ide-cd.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:91k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  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 accomodated 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.
  123.  * 3.11  Apr 29, 1996 -- Patch from Heiko Eissfeldt <heiko@colossus.escape.de>
  124.  *                       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.
  259.  * - Heiko Eissfeldt <heiko@colossus.escape.de> supplied
  260.  *   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.  *
  295.  *************************************************************************/
  296.  
  297. #define IDECD_VERSION "4.59"
  298. #include <linux/config.h>
  299. #include <linux/module.h>
  300. #include <linux/types.h>
  301. #include <linux/kernel.h>
  302. #include <linux/delay.h>
  303. #include <linux/timer.h>
  304. #include <linux/slab.h>
  305. #include <linux/interrupt.h>
  306. #include <linux/errno.h>
  307. #include <linux/cdrom.h>
  308. #include <linux/ide.h>
  309. #include <linux/completion.h>
  310. #include <asm/irq.h>
  311. #include <asm/io.h>
  312. #include <asm/byteorder.h>
  313. #include <asm/uaccess.h>
  314. #include <asm/unaligned.h>
  315. #include "ide-cd.h"
  316. /****************************************************************************
  317.  * Generic packet command support and error handling routines.
  318.  */
  319. /* Mark that we've seen a media change, and invalidate our internal
  320.    buffers. */
  321. static void cdrom_saw_media_change (ide_drive_t *drive)
  322. {
  323. struct cdrom_info *info = drive->driver_data;
  324. CDROM_STATE_FLAGS (drive)->media_changed = 1;
  325. CDROM_STATE_FLAGS (drive)->toc_valid = 0;
  326. info->nsectors_buffered = 0;
  327. }
  328. static int cdrom_log_sense(ide_drive_t *drive, struct packet_command *pc,
  329.    struct request_sense *sense)
  330. {
  331. int log = 0;
  332. if (sense == NULL || pc == NULL || pc->quiet)
  333. return 0;
  334. switch (sense->sense_key) {
  335. case NO_SENSE: case RECOVERED_ERROR:
  336. break;
  337. case NOT_READY:
  338. /*
  339.  * don't care about tray state messages for
  340.  * e.g. capacity commands or in-progress or
  341.  * becoming ready
  342.  */
  343. if (sense->asc == 0x3a || sense->asc == 0x04)
  344. break;
  345. log = 1;
  346. break;
  347. case UNIT_ATTENTION:
  348. /*
  349.  * Make good and sure we've seen this potential media
  350.  * change. Some drives (i.e. Creative) fail to present
  351.  * the correct sense key in the error register.
  352.  */
  353. cdrom_saw_media_change(drive);
  354. break;
  355. default:
  356. log = 1;
  357. break;
  358. }
  359. return log;
  360. }
  361. static
  362. void cdrom_analyze_sense_data(ide_drive_t *drive,
  363.       struct packet_command *failed_command,
  364.       struct request_sense *sense)
  365. {
  366. if (!cdrom_log_sense(drive, failed_command, sense))
  367. return;
  368. /*
  369.  * If a read toc is executed for a CD-R or CD-RW medium where
  370.  * the first toc has not been recorded yet, it will fail with
  371.  * 05/24/00 (which is a confusing error)
  372.  */
  373. if (failed_command && failed_command->c[0] == GPCMD_READ_TOC_PMA_ATIP)
  374. if (sense->sense_key == 0x05 && sense->asc == 0x24)
  375. return;
  376. #if VERBOSE_IDE_CD_ERRORS
  377. {
  378. int i;
  379. const char *s;
  380. char buf[80];
  381. printk ("ATAPI device %s:n", drive->name);
  382. if (sense->error_code==0x70)
  383. printk("  Error: ");
  384. else if (sense->error_code==0x71)
  385. printk("  Deferred Error: ");
  386. else if (sense->error_code == 0x7f)
  387. printk("  Vendor-specific Error: ");
  388. else
  389. printk("  Unknown Error Type: ");
  390. if (sense->sense_key < ARY_LEN(sense_key_texts))
  391. s = sense_key_texts[sense->sense_key];
  392. else
  393. s = "bad sense key!";
  394. printk("%s -- (Sense key=0x%02x)n", s, sense->sense_key);
  395. if (sense->asc == 0x40) {
  396. sprintf(buf, "Diagnostic failure on component 0x%02x",
  397.  sense->ascq);
  398. s = buf;
  399. } else {
  400. int lo = 0, mid, hi = ARY_LEN(sense_data_texts);
  401. unsigned long key = (sense->sense_key << 16);
  402. key |= (sense->asc << 8);
  403. if (!(sense->ascq >= 0x80 && sense->ascq <= 0xdd))
  404. key |= sense->ascq;
  405. s = NULL;
  406. while (hi > lo) {
  407. mid = (lo + hi) / 2;
  408. if (sense_data_texts[mid].asc_ascq == key ||
  409.     sense_data_texts[mid].asc_ascq == (0xff0000|key)) {
  410. s = sense_data_texts[mid].text;
  411. break;
  412. }
  413. else if (sense_data_texts[mid].asc_ascq > key)
  414. hi = mid;
  415. else
  416. lo = mid+1;
  417. }
  418. }
  419. if (s == NULL) {
  420. if (sense->asc > 0x80)
  421. s = "(vendor-specific error)";
  422. else
  423. s = "(reserved error code)";
  424. }
  425. printk("  %s -- (asc=0x%02x, ascq=0x%02x)n",
  426. s, sense->asc, sense->ascq);
  427. if (failed_command != NULL) {
  428. int lo=0, mid, hi= ARY_LEN (packet_command_texts);
  429. s = NULL;
  430. while (hi > lo) {
  431. mid = (lo + hi) / 2;
  432. if (packet_command_texts[mid].packet_command ==
  433.     failed_command->c[0]) {
  434. s = packet_command_texts[mid].text;
  435. break;
  436. }
  437. if (packet_command_texts[mid].packet_command >
  438.     failed_command->c[0])
  439. hi = mid;
  440. else
  441. lo = mid+1;
  442. }
  443. printk ("  The failed "%s" packet command was: n  "", s);
  444. for (i=0; i<sizeof (failed_command->c); i++)
  445. printk ("%02x ", failed_command->c[i]);
  446. printk (""n");
  447. }
  448. /* The SKSV bit specifies validity of the sense_key_specific
  449.  * in the next two commands. It is bit 7 of the first byte.
  450.  * In the case of NOT_READY, if SKSV is set the drive can
  451.  * give us nice ETA readings.
  452.  */
  453. if (sense->sense_key == NOT_READY && (sense->sks[0] & 0x80)) {
  454. int progress = (sense->sks[1] << 8 | sense->sks[2]) * 100;
  455. printk("  Command is %02d%% completen", progress / 0xffff);
  456. }
  457. if (sense->sense_key == ILLEGAL_REQUEST &&
  458.     (sense->sks[0] & 0x80) != 0) {
  459. printk("  Error in %s byte %d",
  460. (sense->sks[0] & 0x40) != 0 ?
  461. "command packet" : "command data",
  462. (sense->sks[1] << 8) + sense->sks[2]);
  463. if ((sense->sks[0] & 0x40) != 0)
  464. printk (" bit %d", sense->sks[0] & 0x07);
  465. printk ("n");
  466. }
  467. }
  468. #else /* not VERBOSE_IDE_CD_ERRORS */
  469. /* Suppress printing unit attention and `in progress of becoming ready'
  470.    errors when we're not being verbose. */
  471. if (sense->sense_key == UNIT_ATTENTION ||
  472.     (sense->sense_key == NOT_READY && (sense->asc == 4 ||
  473. sense->asc == 0x3a)))
  474. return;
  475. printk("%s: error code: 0x%02x  sense_key: 0x%02x  asc: 0x%02x  ascq: 0x%02xn",
  476. drive->name,
  477. sense->error_code, sense->sense_key,
  478. sense->asc, sense->ascq);
  479. #endif /* not VERBOSE_IDE_CD_ERRORS */
  480. }
  481. static void cdrom_queue_request_sense(ide_drive_t *drive, 
  482.       struct completion *wait,
  483.       struct request_sense *sense,
  484.       struct packet_command *failed_command)
  485. {
  486. struct cdrom_info *info = drive->driver_data;
  487. struct packet_command *pc = &info->request_sense_pc;
  488. struct request *rq;
  489. if (sense == NULL)
  490. sense = &info->sense_data;
  491. memset(pc, 0, sizeof(struct packet_command));
  492. pc->c[0] = GPCMD_REQUEST_SENSE;
  493. pc->c[4] = pc->buflen = 18;
  494. pc->buffer = (char *) sense;
  495. pc->sense = (struct request_sense *) failed_command;
  496. /* stuff the sense request in front of our current request */
  497. rq = &info->request_sense_request;
  498. ide_init_drive_cmd(rq);
  499. rq->cmd = REQUEST_SENSE_COMMAND;
  500. rq->buffer = (char *) pc;
  501. rq->waiting = wait;
  502. (void) ide_do_drive_cmd(drive, rq, ide_preempt);
  503. }
  504. static void cdrom_end_request (int uptodate, ide_drive_t *drive)
  505. {
  506. struct request *rq = HWGROUP(drive)->rq;
  507. if (rq->cmd == REQUEST_SENSE_COMMAND && uptodate) {
  508. struct packet_command *pc = (struct packet_command *) rq->buffer;
  509. cdrom_analyze_sense_data(drive,
  510. (struct packet_command *) pc->sense,
  511. (struct request_sense *) (pc->buffer - pc->c[4]));
  512. }
  513. if (rq->cmd == READ || rq->cmd == WRITE)
  514. if (!rq->current_nr_sectors)
  515. uptodate = 1;
  516. ide_end_request (uptodate, HWGROUP(drive));
  517. }
  518. /* Returns 0 if the request should be continued.
  519.    Returns 1 if the request was ended. */
  520. static int cdrom_decode_status (ide_startstop_t *startstop, ide_drive_t *drive,
  521. int good_stat, int *stat_ret)
  522. {
  523. struct request *rq = HWGROUP(drive)->rq;
  524. int stat, err, sense_key;
  525. struct packet_command *pc;
  526. /* Check for errors. */
  527. stat = GET_STAT();
  528. *stat_ret = stat;
  529. if (OK_STAT (stat, good_stat, BAD_R_STAT))
  530. return 0;
  531. /* Get the IDE error register. */
  532. err = GET_ERR();
  533. sense_key = err >> 4;
  534. if (rq == NULL) {
  535. printk("%s: missing rq in cdrom_decode_statusn", drive->name);
  536. *startstop = ide_stopped;
  537. return 1;
  538. }
  539. if (rq->cmd == REQUEST_SENSE_COMMAND) {
  540. /* We got an error trying to get sense info
  541.    from the drive (probably while trying
  542.    to recover from a former error).  Just give up. */
  543. pc = (struct packet_command *) rq->buffer;
  544. pc->stat = 1;
  545. cdrom_end_request (1, drive);
  546. *startstop = ide_error (drive, "request sense failure", stat);
  547. return 1;
  548. } else if (rq->cmd == PACKET_COMMAND) {
  549. /* All other functions, except for READ. */
  550. struct completion *wait = NULL;
  551. pc = (struct packet_command *) rq->buffer;
  552. /* Check for tray open. */
  553. if (sense_key == NOT_READY) {
  554. cdrom_saw_media_change (drive);
  555. } else if (sense_key == UNIT_ATTENTION) {
  556. /* Check for media change. */
  557. cdrom_saw_media_change (drive);
  558. /*printk("%s: media changedn",drive->name);*/
  559. return 0;
  560. } else if (!pc->quiet) {
  561. /* Otherwise, print an error. */
  562. ide_dump_status(drive, "packet command error", stat);
  563. }
  564. /* Set the error flag and complete the request.
  565.    Then, if we have a CHECK CONDITION status,
  566.    queue a request sense command.  We must be careful,
  567.    though: we don't want the thread in
  568.    cdrom_queue_packet_command to wake up until
  569.    the request sense has completed.  We do this
  570.    by transferring the semaphore from the packet
  571.    command request to the request sense request. */
  572. if ((stat & ERR_STAT) != 0) {
  573. wait = rq->waiting;
  574. rq->waiting = NULL;
  575. }
  576. pc->stat = 1;
  577. cdrom_end_request (1, drive);
  578. if ((stat & ERR_STAT) != 0)
  579. cdrom_queue_request_sense(drive, wait, pc->sense, pc);
  580. } else {
  581. /* Handle errors from READ and WRITE requests. */
  582. if (sense_key == NOT_READY) {
  583. /* Tray open. */
  584. cdrom_saw_media_change (drive);
  585. /* Fail the request. */
  586. printk ("%s: tray openn", drive->name);
  587. cdrom_end_request (0, drive);
  588. } else if (sense_key == UNIT_ATTENTION) {
  589. /* Media change. */
  590. cdrom_saw_media_change (drive);
  591. /* Arrange to retry the request.
  592.    But be sure to give up if we've retried
  593.    too many times. */
  594. if (++rq->errors > ERROR_MAX)
  595. cdrom_end_request (0, drive);
  596. } else if (sense_key == ILLEGAL_REQUEST ||
  597.    sense_key == DATA_PROTECT) {
  598. /* No point in retrying after an illegal
  599.    request or data protect error.*/
  600. ide_dump_status (drive, "command error", stat);
  601. cdrom_end_request (0, drive);
  602. } else if ((err & ~ABRT_ERR) != 0) {
  603. /* Go to the default handler
  604.    for other errors. */
  605. *startstop = ide_error (drive, "cdrom_decode_status", stat);
  606. return 1;
  607. } else if ((++rq->errors > ERROR_MAX)) {
  608. /* We've racked up too many retries.  Abort. */
  609. cdrom_end_request (0, drive);
  610. }
  611. /* If we got a CHECK_CONDITION status,
  612.    queue a request sense command. */
  613. if ((stat & ERR_STAT) != 0)
  614. cdrom_queue_request_sense(drive, NULL, NULL, NULL);
  615. }
  616. /* Retry, or handle the next request. */
  617. *startstop = ide_stopped;
  618. return 1;
  619. }
  620. static int cdrom_timer_expiry(ide_drive_t *drive)
  621. {
  622. struct request *rq = HWGROUP(drive)->rq;
  623. struct packet_command *pc = (struct packet_command *) rq->buffer;
  624. unsigned long wait = 0;
  625. /*
  626.  * Some commands are *slow* and normally take a long time to
  627.  * complete. Usually we can use the ATAPI "disconnect" to bypass
  628.  * this, but not all commands/drives support that. Let
  629.  * ide_timer_expiry keep polling us for these.
  630.  */
  631. switch (pc->c[0]) {
  632. case GPCMD_BLANK:
  633. case GPCMD_FORMAT_UNIT:
  634. case GPCMD_RESERVE_RZONE_TRACK:
  635. wait = WAIT_CMD;
  636. break;
  637. default:
  638. wait = 0;
  639. break;
  640. }
  641. return wait;
  642. }
  643. /* Set up the device registers for transferring a packet command on DEV,
  644.    expecting to later transfer XFERLEN bytes.  HANDLER is the routine
  645.    which actually transfers the command to the drive.  If this is a
  646.    drq_interrupt device, this routine will arrange for HANDLER to be
  647.    called when the interrupt from the drive arrives.  Otherwise, HANDLER
  648.    will be called immediately after the drive is prepared for the transfer. */
  649. static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
  650.   int xferlen,
  651.   ide_handler_t *handler)
  652. {
  653. ide_startstop_t startstop;
  654. struct cdrom_info *info = drive->driver_data;
  655. /* Wait for the controller to be idle. */
  656. if (ide_wait_stat(&startstop, drive, 0, BUSY_STAT, WAIT_READY))
  657. return startstop;
  658. if (info->dma) {
  659. if (info->cmd == READ) {
  660. info->dma = !HWIF(drive)->dmaproc(ide_dma_read, drive);
  661. } else if (info->cmd == WRITE) {
  662. info->dma = !HWIF(drive)->dmaproc(ide_dma_write, drive);
  663. } else {
  664. printk("ide-cd: DMA set, but not allowedn");
  665. }
  666. }
  667. /* Set up the controller registers. */
  668. OUT_BYTE (info->dma, IDE_FEATURE_REG);
  669. OUT_BYTE (0, IDE_NSECTOR_REG);
  670. OUT_BYTE (0, IDE_SECTOR_REG);
  671. OUT_BYTE (xferlen & 0xff, IDE_LCYL_REG);
  672. OUT_BYTE (xferlen >> 8  , IDE_HCYL_REG);
  673. if (IDE_CONTROL_REG)
  674. OUT_BYTE (drive->ctl, IDE_CONTROL_REG);
  675.  
  676. if (info->dma)
  677. (void) (HWIF(drive)->dmaproc(ide_dma_begin, drive));
  678. if (CDROM_CONFIG_FLAGS (drive)->drq_interrupt) {
  679. ide_set_handler (drive, handler, WAIT_CMD, cdrom_timer_expiry);
  680. OUT_BYTE (WIN_PACKETCMD, IDE_COMMAND_REG); /* packet command */
  681. return ide_started;
  682. } else {
  683. OUT_BYTE (WIN_PACKETCMD, IDE_COMMAND_REG); /* packet command */
  684. return (*handler) (drive);
  685. }
  686. }
  687. /* Send a packet command to DRIVE described by CMD_BUF and CMD_LEN.
  688.    The device registers must have already been prepared
  689.    by cdrom_start_packet_command.
  690.    HANDLER is the interrupt handler to call when the command completes
  691.    or there's data ready. */
  692. /*
  693.  * changed 5 parameters to 3 for dvd-ram
  694.  * struct packet_command *pc; now packet_command_t *pc;
  695.  */
  696. static ide_startstop_t cdrom_transfer_packet_command (ide_drive_t *drive,
  697.   struct packet_command *pc,
  698.   ide_handler_t *handler)
  699. {
  700. unsigned char *cmd_buf = pc->c;
  701. int cmd_len = sizeof(pc->c);
  702. unsigned int timeout = pc->timeout;
  703. ide_startstop_t startstop;
  704. if (CDROM_CONFIG_FLAGS (drive)->drq_interrupt) {
  705. /* Here we should have been called after receiving an interrupt
  706.    from the device.  DRQ should how be set. */
  707. int stat_dum;
  708. /* Check for errors. */
  709. if (cdrom_decode_status (&startstop, drive, DRQ_STAT, &stat_dum))
  710. return startstop;
  711. } else {
  712. /* Otherwise, we must wait for DRQ to get set. */
  713. if (ide_wait_stat (&startstop, drive, DRQ_STAT, BUSY_STAT, WAIT_READY))
  714. return startstop;
  715. }
  716. /* Arm the interrupt handler. */
  717. ide_set_handler (drive, handler, timeout, cdrom_timer_expiry);
  718. /* Send the command to the device. */
  719. atapi_output_bytes (drive, cmd_buf, cmd_len);
  720. return ide_started;
  721. }
  722. /****************************************************************************
  723.  * Block read functions.
  724.  */
  725. /*
  726.  * Buffer up to SECTORS_TO_TRANSFER sectors from the drive in our sector
  727.  * buffer.  Once the first sector is added, any subsequent sectors are
  728.  * assumed to be continuous (until the buffer is cleared).  For the first
  729.  * sector added, SECTOR is its sector number.  (SECTOR is then ignored until
  730.  * the buffer is cleared.)
  731.  */
  732. static void cdrom_buffer_sectors (ide_drive_t *drive, unsigned long sector,
  733.                                   int sectors_to_transfer)
  734. {
  735. struct cdrom_info *info = drive->driver_data;
  736. /* Number of sectors to read into the buffer. */
  737. int sectors_to_buffer = MIN (sectors_to_transfer,
  738.      (SECTOR_BUFFER_SIZE >> SECTOR_BITS) -
  739.        info->nsectors_buffered);
  740. char *dest;
  741. /* If we couldn't get a buffer, don't try to buffer anything... */
  742. if (info->buffer == NULL)
  743. sectors_to_buffer = 0;
  744. /* If this is the first sector in the buffer, remember its number. */
  745. if (info->nsectors_buffered == 0)
  746. info->sector_buffered = sector;
  747. /* Read the data into the buffer. */
  748. dest = info->buffer + info->nsectors_buffered * SECTOR_SIZE;
  749. while (sectors_to_buffer > 0) {
  750. atapi_input_bytes (drive, dest, SECTOR_SIZE);
  751. --sectors_to_buffer;
  752. --sectors_to_transfer;
  753. ++info->nsectors_buffered;
  754. dest += SECTOR_SIZE;
  755. }
  756. /* Throw away any remaining data. */
  757. while (sectors_to_transfer > 0) {
  758. char dum[SECTOR_SIZE];
  759. atapi_input_bytes (drive, dum, sizeof (dum));
  760. --sectors_to_transfer;
  761. }
  762. }
  763. /*
  764.  * Check the contents of the interrupt reason register from the cdrom
  765.  * and attempt to recover if there are problems.  Returns  0 if everything's
  766.  * ok; nonzero if the request has been terminated.
  767.  */
  768. static inline
  769. int cdrom_read_check_ireason (ide_drive_t *drive, int len, int ireason)
  770. {
  771. ireason &= 3;
  772. if (ireason == 2) return 0;
  773. if (ireason == 0) {
  774. /* Whoops... The drive is expecting to receive data from us! */
  775. printk ("%s: cdrom_read_intr: "
  776. "Drive wants to transfer data the wrong way!n",
  777. drive->name);
  778. /* Throw some data at the drive so it doesn't hang
  779.    and quit this request. */
  780. while (len > 0) {
  781. int dum = 0;
  782. atapi_output_bytes (drive, &dum, sizeof (dum));
  783. len -= sizeof (dum);
  784. }
  785. } else  if (ireason == 1) {
  786. /* Some drives (ASUS) seem to tell us that status
  787.  * info is available. just get it and ignore.
  788.  */
  789. GET_STAT();
  790. return 0;
  791. } else {
  792. /* Drive wants a command packet, or invalid ireason... */
  793. printk ("%s: cdrom_read_intr: bad interrupt reason %dn",
  794. drive->name, ireason);
  795. }
  796. cdrom_end_request (0, drive);
  797. return -1;
  798. }
  799. /*
  800.  * Interrupt routine.  Called when a read request has completed.
  801.  */
  802. static ide_startstop_t cdrom_read_intr (ide_drive_t *drive)
  803. {
  804. int stat;
  805. int ireason, len, sectors_to_transfer, nskip;
  806. struct cdrom_info *info = drive->driver_data;
  807. int i, dma = info->dma, dma_error = 0;
  808. ide_startstop_t startstop;
  809. struct request *rq = HWGROUP(drive)->rq;
  810. /* Check for errors. */
  811. if (dma) {
  812. info->dma = 0;
  813. if ((dma_error = HWIF(drive)->dmaproc(ide_dma_end, drive)))
  814. HWIF(drive)->dmaproc(ide_dma_off, drive);
  815. }
  816. if (cdrom_decode_status (&startstop, drive, 0, &stat))
  817. return startstop;
  818.  
  819. if (dma) {
  820. if (!dma_error) {
  821. for (i = rq->nr_sectors; i > 0;) {
  822. i -= rq->current_nr_sectors;
  823. ide_end_request(1, HWGROUP(drive));
  824. }
  825. return ide_stopped;
  826. } else
  827. return ide_error (drive, "dma error", stat);
  828. }
  829. /* Read the interrupt reason and the transfer length. */
  830. ireason = IN_BYTE (IDE_NSECTOR_REG);
  831. len = IN_BYTE (IDE_LCYL_REG) + 256 * IN_BYTE (IDE_HCYL_REG);
  832. /* If DRQ is clear, the command has completed. */
  833. if ((stat & DRQ_STAT) == 0) {
  834. /* If we're not done filling the current buffer, complain.
  835.    Otherwise, complete the command normally. */
  836. if (rq->current_nr_sectors > 0) {
  837. printk ("%s: cdrom_read_intr: data underrun (%ld blocks)n",
  838. drive->name, rq->current_nr_sectors);
  839. cdrom_end_request (0, drive);
  840. } else
  841. cdrom_end_request (1, drive);
  842. return ide_stopped;
  843. }
  844. /* Check that the drive is expecting to do the same thing we are. */
  845. if (cdrom_read_check_ireason (drive, len, ireason))
  846. return ide_stopped;
  847. /* Assume that the drive will always provide data in multiples
  848.    of at least SECTOR_SIZE, as it gets hairy to keep track
  849.    of the transfers otherwise. */
  850. if ((len % SECTOR_SIZE) != 0) {
  851. printk ("%s: cdrom_read_intr: Bad transfer size %dn",
  852. drive->name, len);
  853. if (CDROM_CONFIG_FLAGS (drive)->limit_nframes)
  854. printk ("  This drive is not supported by this version of the drivern");
  855. else {
  856. printk ("  Trying to limit transfer sizesn");
  857. CDROM_CONFIG_FLAGS (drive)->limit_nframes = 1;
  858. }
  859. cdrom_end_request (0, drive);
  860. return ide_stopped;
  861. }
  862. /* The number of sectors we need to read from the drive. */
  863. sectors_to_transfer = len / SECTOR_SIZE;
  864. /* First, figure out if we need to bit-bucket
  865.    any of the leading sectors. */
  866. nskip = MIN ((int)(rq->current_nr_sectors - (rq->bh->b_size >> SECTOR_BITS)),
  867.      sectors_to_transfer);
  868. while (nskip > 0) {
  869. /* We need to throw away a sector. */
  870. char dum[SECTOR_SIZE];
  871. atapi_input_bytes (drive, dum, sizeof (dum));
  872. --rq->current_nr_sectors;
  873. --nskip;
  874. --sectors_to_transfer;
  875. }
  876. /* Now loop while we still have data to read from the drive. */
  877. while (sectors_to_transfer > 0) {
  878. int this_transfer;
  879. /* If we've filled the present buffer but there's another
  880.    chained buffer after it, move on. */
  881. if (rq->current_nr_sectors == 0 && rq->nr_sectors)
  882. cdrom_end_request (1, drive);
  883. /* If the buffers are full, cache the rest of the data in our
  884.    internal buffer. */
  885. if (rq->current_nr_sectors == 0) {
  886. cdrom_buffer_sectors(drive, rq->sector, sectors_to_transfer);
  887. sectors_to_transfer = 0;
  888. } else {
  889. /* Transfer data to the buffers.
  890.    Figure out how many sectors we can transfer
  891.    to the current buffer. */
  892. this_transfer = MIN (sectors_to_transfer,
  893.      rq->current_nr_sectors);
  894. /* Read this_transfer sectors
  895.    into the current buffer. */
  896. while (this_transfer > 0) {
  897. atapi_input_bytes(drive, rq->buffer, SECTOR_SIZE);
  898. rq->buffer += SECTOR_SIZE;
  899. --rq->nr_sectors;
  900. --rq->current_nr_sectors;
  901. ++rq->sector;
  902. --this_transfer;
  903. --sectors_to_transfer;
  904. }
  905. }
  906. }
  907. /* Done moving data!
  908.    Wait for another interrupt. */
  909. ide_set_handler(drive, &cdrom_read_intr, WAIT_CMD, NULL);
  910. return ide_started;
  911. }
  912. /*
  913.  * Try to satisfy some of the current read request from our cached data.
  914.  * Returns nonzero if the request has been completed, zero otherwise.
  915.  */
  916. static int cdrom_read_from_buffer (ide_drive_t *drive)
  917. {
  918. struct cdrom_info *info = drive->driver_data;
  919. struct request *rq = HWGROUP(drive)->rq;
  920. /* Can't do anything if there's no buffer. */
  921. if (info->buffer == NULL) return 0;
  922. /* Loop while this request needs data and the next block is present
  923.    in our cache. */
  924. while (rq->nr_sectors > 0 &&
  925.        rq->sector >= info->sector_buffered &&
  926.        rq->sector < info->sector_buffered + info->nsectors_buffered) {
  927. if (rq->current_nr_sectors == 0)
  928. cdrom_end_request (1, drive);
  929. memcpy (rq->buffer,
  930. info->buffer +
  931. (rq->sector - info->sector_buffered) * SECTOR_SIZE,
  932. SECTOR_SIZE);
  933. rq->buffer += SECTOR_SIZE;
  934. --rq->current_nr_sectors;
  935. --rq->nr_sectors;
  936. ++rq->sector;
  937. }
  938. /* If we've satisfied the current request,
  939.    terminate it successfully. */
  940. if (rq->nr_sectors == 0) {
  941. cdrom_end_request (1, drive);
  942. return -1;
  943. }
  944. /* Move on to the next buffer if needed. */
  945. if (rq->current_nr_sectors == 0)
  946. cdrom_end_request (1, drive);
  947. /* If this condition does not hold, then the kluge i use to
  948.    represent the number of sectors to skip at the start of a transfer
  949.    will fail.  I think that this will never happen, but let's be
  950.    paranoid and check. */
  951. if (rq->current_nr_sectors < (rq->bh->b_size >> SECTOR_BITS) &&
  952.     (rq->sector % SECTORS_PER_FRAME) != 0) {
  953. printk ("%s: cdrom_read_from_buffer: buffer botch (%ld)n",
  954. drive->name, rq->sector);
  955. cdrom_end_request (0, drive);
  956. return -1;
  957. }
  958. return 0;
  959. }
  960. /*
  961.  * Routine to send a read packet command to the drive.
  962.  * This is usually called directly from cdrom_start_read.
  963.  * However, for drq_interrupt devices, it is called from an interrupt
  964.  * when the drive is ready to accept the command.
  965.  */
  966. static ide_startstop_t cdrom_start_read_continuation (ide_drive_t *drive)
  967. {
  968. struct packet_command pc;
  969. struct request *rq = HWGROUP(drive)->rq;
  970. int nsect, sector, nframes, frame, nskip;
  971. /* Number of sectors to transfer. */
  972. nsect = rq->nr_sectors;
  973. /* Starting sector. */
  974. sector = rq->sector;
  975. /* If the requested sector doesn't start on a cdrom block boundary,
  976.    we must adjust the start of the transfer so that it does,
  977.    and remember to skip the first few sectors.
  978.    If the CURRENT_NR_SECTORS field is larger than the size
  979.    of the buffer, it will mean that we're to skip a number
  980.    of sectors equal to the amount by which CURRENT_NR_SECTORS
  981.    is larger than the buffer size. */
  982. nskip = (sector % SECTORS_PER_FRAME);
  983. if (nskip > 0) {
  984. /* Sanity check... */
  985. if (rq->current_nr_sectors != (rq->bh->b_size >> SECTOR_BITS) &&
  986. (rq->sector % CD_FRAMESIZE != 0)) {
  987. printk ("%s: cdrom_start_read_continuation: buffer botch (%lu)n",
  988. drive->name, rq->current_nr_sectors);
  989. cdrom_end_request (0, drive);
  990. return ide_stopped;
  991. }
  992. sector -= nskip;
  993. nsect += nskip;
  994. rq->current_nr_sectors += nskip;
  995. }
  996. /* Convert from sectors to cdrom blocks, rounding up the transfer
  997.    length if needed. */
  998. nframes = (nsect + SECTORS_PER_FRAME-1) / SECTORS_PER_FRAME;
  999. frame = sector / SECTORS_PER_FRAME;
  1000. /* Largest number of frames was can transfer at once is 64k-1. For
  1001.    some drives we need to limit this even more. */
  1002. nframes = MIN (nframes, (CDROM_CONFIG_FLAGS (drive)->limit_nframes) ?
  1003. (65534 / CD_FRAMESIZE) : 65535);
  1004. /* Set up the command */
  1005. memset (&pc.c, 0, sizeof (pc.c));
  1006. pc.c[0] = GPCMD_READ_10;
  1007. pc.c[7] = (nframes >> 8);
  1008. pc.c[8] = (nframes & 0xff);
  1009. put_unaligned(cpu_to_be32(frame), (unsigned int *) &pc.c[2]);
  1010. pc.timeout = WAIT_CMD;
  1011. /* Send the command to the drive and return. */
  1012. return cdrom_transfer_packet_command(drive, &pc, &cdrom_read_intr);
  1013. }
  1014. #define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
  1015. #define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
  1016. #define IDECD_SEEK_TIMEOUT     WAIT_CMD /* 10 sec */
  1017. static ide_startstop_t cdrom_seek_intr (ide_drive_t *drive)
  1018. {
  1019. struct cdrom_info *info = drive->driver_data;
  1020. int stat;
  1021. static int retry = 10;
  1022. ide_startstop_t startstop;
  1023. if (cdrom_decode_status (&startstop, drive, 0, &stat))
  1024. return startstop;
  1025. CDROM_CONFIG_FLAGS(drive)->seeking = 1;
  1026. if (retry && jiffies - info->start_seek > IDECD_SEEK_TIMER) {
  1027. if (--retry == 0) {
  1028. /*
  1029.  * this condition is far too common, to bother
  1030.  * users about it
  1031.  */
  1032. #if 0
  1033. printk("%s: disabled DSC seek overlapn", drive->name);
  1034. #endif
  1035. drive->dsc_overlap = 0;
  1036. }
  1037. }
  1038. return ide_stopped;
  1039. }
  1040. static ide_startstop_t cdrom_start_seek_continuation (ide_drive_t *drive)
  1041. {
  1042. struct packet_command pc;
  1043. struct request *rq = HWGROUP(drive)->rq;
  1044. int sector, frame, nskip;
  1045. sector = rq->sector;
  1046. nskip = (sector % SECTORS_PER_FRAME);
  1047. if (nskip > 0)
  1048. sector -= nskip;
  1049. frame = sector / SECTORS_PER_FRAME;
  1050. memset (&pc.c, 0, sizeof (pc.c));
  1051. pc.c[0] = GPCMD_SEEK;
  1052. put_unaligned(cpu_to_be32(frame), (unsigned int *) &pc.c[2]);
  1053. pc.timeout = WAIT_CMD;
  1054. return cdrom_transfer_packet_command(drive, &pc, &cdrom_seek_intr);
  1055. }
  1056. static ide_startstop_t cdrom_start_seek (ide_drive_t *drive, unsigned int block)
  1057. {
  1058. struct cdrom_info *info = drive->driver_data;
  1059. info->dma = 0;
  1060. info->cmd = 0;
  1061. info->start_seek = jiffies;
  1062. return cdrom_start_packet_command (drive, 0, cdrom_start_seek_continuation);
  1063. }
  1064. static inline int cdrom_merge_requests(struct request *rq, struct request *nxt)
  1065. {
  1066. int ret = 1;
  1067. /*
  1068.  * partitions not really working, but better check anyway...
  1069.  */
  1070. if (rq->cmd == nxt->cmd && rq->rq_dev == nxt->rq_dev) {
  1071. rq->nr_sectors += nxt->nr_sectors;
  1072. rq->hard_nr_sectors += nxt->nr_sectors;
  1073. rq->bhtail->b_reqnext = nxt->bh;
  1074. rq->bhtail = nxt->bhtail;
  1075. list_del(&nxt->queue);
  1076. blkdev_release_request(nxt);
  1077. ret = 0;
  1078. }
  1079. return ret;
  1080. }
  1081. /*
  1082.  * the current request will always be the first one on the list
  1083.  */
  1084. static void cdrom_attempt_remerge(ide_drive_t *drive, struct request *rq)
  1085. {
  1086. struct list_head *entry;
  1087. struct request *nxt;
  1088. unsigned long flags;
  1089. spin_lock_irqsave(&io_request_lock, flags);
  1090. while (1) {
  1091. entry = rq->queue.next;
  1092. if (entry == &drive->queue.queue_head)
  1093. break;
  1094. nxt = blkdev_entry_to_request(entry);
  1095. if (rq->sector + rq->nr_sectors != nxt->sector)
  1096. break;
  1097. else if (rq->nr_sectors + nxt->nr_sectors > SECTORS_MAX)
  1098. break;
  1099. if (cdrom_merge_requests(rq, nxt))
  1100. break;
  1101. }
  1102. spin_unlock_irqrestore(&io_request_lock, flags);
  1103. }
  1104. /* Fix up a possibly partially-processed request so that we can
  1105.    start it over entirely, or even put it back on the request queue. */
  1106. static void restore_request (struct request *rq)
  1107. {
  1108. if (rq->buffer != rq->bh->b_data) {
  1109. int n = (rq->buffer - rq->bh->b_data) / SECTOR_SIZE;
  1110. rq->buffer = rq->bh->b_data;
  1111. rq->nr_sectors += n;
  1112. rq->sector -= n;
  1113. }
  1114. rq->current_nr_sectors = rq->bh->b_size >> SECTOR_BITS;
  1115. rq->hard_nr_sectors = rq->nr_sectors;
  1116. rq->hard_sector = rq->sector;
  1117. }
  1118. /*
  1119.  * Start a read request from the CD-ROM.
  1120.  */
  1121. static ide_startstop_t cdrom_start_read (ide_drive_t *drive, unsigned int block)
  1122. {
  1123. struct cdrom_info *info = drive->driver_data;
  1124. struct request *rq = HWGROUP(drive)->rq;
  1125. int minor = MINOR (rq->rq_dev);
  1126. /* If the request is relative to a partition, fix it up to refer to the
  1127.    absolute address.  */
  1128. if (minor & PARTN_MASK) {
  1129. rq->sector = block;
  1130. minor &= ~PARTN_MASK;
  1131. rq->rq_dev = MKDEV(MAJOR(rq->rq_dev), minor);
  1132. }
  1133. /* We may be retrying this request after an error.  Fix up
  1134.    any weirdness which might be present in the request packet. */
  1135. restore_request(rq);
  1136. /* Satisfy whatever we can of this request from our cached sector. */
  1137. if (cdrom_read_from_buffer(drive))
  1138. return ide_stopped;
  1139. cdrom_attempt_remerge(drive, rq);
  1140. /* Clear the local sector buffer. */
  1141. info->nsectors_buffered = 0;
  1142. /* use dma, if possible. */
  1143. if (drive->using_dma && (rq->sector % SECTORS_PER_FRAME == 0) &&
  1144. (rq->nr_sectors % SECTORS_PER_FRAME == 0))
  1145. info->dma = 1;
  1146. else
  1147. info->dma = 0;
  1148. info->cmd = READ;
  1149. /* Start sending the read request to the drive. */
  1150. return cdrom_start_packet_command(drive, 32768, cdrom_start_read_continuation);
  1151. }
  1152. /****************************************************************************
  1153.  * Execute all other packet commands.
  1154.  */
  1155. /* Forward declarations. */
  1156. static int cdrom_lockdoor(ide_drive_t *drive, int lockflag,
  1157.   struct request_sense *sense);
  1158. /* Interrupt routine for packet command completion. */
  1159. static ide_startstop_t cdrom_pc_intr (ide_drive_t *drive)
  1160. {
  1161. int ireason, len, stat, thislen;
  1162. struct request *rq = HWGROUP(drive)->rq;
  1163. struct packet_command *pc = (struct packet_command *)rq->buffer;
  1164. ide_startstop_t startstop;
  1165. /* Check for errors. */
  1166. if (cdrom_decode_status (&startstop, drive, 0, &stat))
  1167. return startstop;
  1168. /* Read the interrupt reason and the transfer length. */
  1169. ireason = IN_BYTE (IDE_NSECTOR_REG);
  1170. len = IN_BYTE (IDE_LCYL_REG) + 256 * IN_BYTE (IDE_HCYL_REG);
  1171. /* If DRQ is clear, the command has completed.
  1172.    Complain if we still have data left to transfer. */
  1173. if ((stat & DRQ_STAT) == 0) {
  1174. /* Some of the trailing request sense fields are optional, and
  1175.    some drives don't send them.  Sigh. */
  1176. if (pc->c[0] == GPCMD_REQUEST_SENSE &&
  1177.     pc->buflen > 0 &&
  1178.     pc->buflen <= 5) {
  1179. while (pc->buflen > 0) {
  1180. *pc->buffer++ = 0;
  1181. --pc->buflen;
  1182. }
  1183. }
  1184. if (pc->buflen == 0)
  1185. cdrom_end_request (1, drive);
  1186. else {
  1187. /* Comment this out, because this always happens 
  1188.    right after a reset occurs, and it is annoying to 
  1189.    always print expected stuff.  */
  1190. /*
  1191. printk ("%s: cdrom_pc_intr: data underrun %dn",
  1192. drive->name, pc->buflen);
  1193. */
  1194. pc->stat = 1;
  1195. cdrom_end_request (1, drive);
  1196. }
  1197. return ide_stopped;
  1198. }
  1199. /* Figure out how much data to transfer. */
  1200. thislen = pc->buflen;
  1201. if (thislen > len) thislen = len;
  1202. /* The drive wants to be written to. */
  1203. if ((ireason & 3) == 0) {
  1204. /* Transfer the data. */
  1205. atapi_output_bytes (drive, pc->buffer, thislen);
  1206. /* If we haven't moved enough data to satisfy the drive,
  1207.    add some padding. */
  1208. while (len > thislen) {
  1209. int dum = 0;
  1210. atapi_output_bytes (drive, &dum, sizeof (dum));
  1211. len -= sizeof (dum);
  1212. }
  1213. /* Keep count of how much data we've moved. */
  1214. pc->buffer += thislen;
  1215. pc->buflen -= thislen;
  1216. }
  1217. /* Same drill for reading. */
  1218. else if ((ireason & 3) == 2) {
  1219. /* Transfer the data. */
  1220. atapi_input_bytes (drive, pc->buffer, thislen);
  1221. /* If we haven't moved enough data to satisfy the drive,
  1222.    add some padding. */
  1223. while (len > thislen) {
  1224. int dum = 0;
  1225. atapi_input_bytes (drive, &dum, sizeof (dum));
  1226. len -= sizeof (dum);
  1227. }
  1228. /* Keep count of how much data we've moved. */
  1229. pc->buffer += thislen;
  1230. pc->buflen -= thislen;
  1231. } else {
  1232. printk ("%s: cdrom_pc_intr: The drive "
  1233. "appears confused (ireason = 0x%2x)n",
  1234. drive->name, ireason);
  1235. pc->stat = 1;
  1236. }
  1237. /* Now we wait for another interrupt. */
  1238. ide_set_handler (drive, &cdrom_pc_intr, WAIT_CMD, cdrom_timer_expiry);
  1239. return ide_started;
  1240. }
  1241. static ide_startstop_t cdrom_do_pc_continuation (ide_drive_t *drive)
  1242. {
  1243. struct request *rq = HWGROUP(drive)->rq;
  1244. struct packet_command *pc = (struct packet_command *)rq->buffer;
  1245. if (!pc->timeout)
  1246. pc->timeout = WAIT_CMD;
  1247. /* Send the command to the drive and return. */
  1248. return cdrom_transfer_packet_command(drive, pc, &cdrom_pc_intr);
  1249. }
  1250. static ide_startstop_t cdrom_do_packet_command (ide_drive_t *drive)
  1251. {
  1252. int len;
  1253. struct request *rq = HWGROUP(drive)->rq;
  1254. struct packet_command *pc = (struct packet_command *)rq->buffer;
  1255. struct cdrom_info *info = drive->driver_data;
  1256. info->dma = 0;
  1257. info->cmd = 0;
  1258. pc->stat = 0;
  1259. len = pc->buflen;
  1260. /* Start sending the command to the drive. */
  1261. return cdrom_start_packet_command (drive, len, cdrom_do_pc_continuation);
  1262. }
  1263. /* Sleep for TIME jiffies.
  1264.    Not to be called from an interrupt handler. */
  1265. static
  1266. void cdrom_sleep (int time)
  1267. {
  1268. int sleep = time;
  1269. do {
  1270. set_current_state(TASK_INTERRUPTIBLE);
  1271. sleep = schedule_timeout(sleep);
  1272. } while (sleep);
  1273. }
  1274. static
  1275. int cdrom_queue_packet_command(ide_drive_t *drive, struct packet_command *pc)
  1276. {
  1277. struct request_sense sense;
  1278. struct request req;
  1279. int retries = 10;
  1280. if (pc->sense == NULL)
  1281. pc->sense = &sense;
  1282. /* Start of retry loop. */
  1283. do {
  1284. ide_init_drive_cmd (&req);
  1285. req.cmd = PACKET_COMMAND;
  1286. req.buffer = (char *)pc;
  1287. ide_do_drive_cmd (drive, &req, ide_wait);
  1288. /* FIXME: we should probably abort/retry or something 
  1289.  * in case of failure */
  1290. if (pc->stat != 0) {
  1291. /* The request failed.  Retry if it was due to a unit
  1292.    attention status
  1293.    (usually means media was changed). */
  1294. struct request_sense *reqbuf = pc->sense;
  1295. if (reqbuf->sense_key == UNIT_ATTENTION)
  1296. cdrom_saw_media_change (drive);
  1297. else if (reqbuf->sense_key == NOT_READY &&
  1298.  reqbuf->asc == 4 && reqbuf->ascq != 4) {
  1299. /* The drive is in the process of loading
  1300.    a disk.  Retry, but wait a little to give
  1301.    the drive time to complete the load. */
  1302. cdrom_sleep(2 * HZ);
  1303. } else {
  1304. /* Otherwise, don't retry. */
  1305. retries = 0;
  1306. }
  1307. --retries;
  1308. }
  1309. /* End of retry loop. */
  1310. } while (pc->stat != 0 && retries >= 0);
  1311. /* Return an error if the command failed. */
  1312. return pc->stat ? -EIO : 0;
  1313. }
  1314. /*
  1315.  * Write handling
  1316.  */
  1317. static inline int cdrom_write_check_ireason(ide_drive_t *drive, int len, int ireason)
  1318. {
  1319. /* Two notes about IDE interrupt reason here - 0 means that
  1320.  * the drive wants to receive data from us, 2 means that
  1321.  * the drive is expecting data from us.
  1322.  */
  1323. ireason &= 3;
  1324. if (ireason == 2) {
  1325. /* Whoops... The drive wants to send data. */
  1326. printk("%s: cdrom_write_intr: wrong transfer direction!n",
  1327. drive->name);
  1328. /* Throw some data at the drive so it doesn't hang
  1329.    and quit this request. */
  1330. while (len > 0) {
  1331. int dum = 0;
  1332. atapi_output_bytes(drive, &dum, sizeof(dum));
  1333. len -= sizeof(dum);
  1334. }
  1335. } else {
  1336. /* Drive wants a command packet, or invalid ireason... */
  1337. printk("%s: cdrom_write_intr: bad interrupt reason %dn",
  1338. drive->name, ireason);
  1339. }
  1340. cdrom_end_request(0, drive);
  1341. return 1;
  1342. }
  1343. static ide_startstop_t cdrom_write_intr(ide_drive_t *drive)
  1344. {
  1345. int stat, ireason, len, sectors_to_transfer, uptodate;
  1346. struct cdrom_info *info = drive->driver_data;
  1347. int i, dma_error = 0, dma = info->dma;
  1348. ide_startstop_t startstop;
  1349. struct request *rq = HWGROUP(drive)->rq;
  1350. /* Check for errors. */
  1351. if (dma) {
  1352. info->dma = 0;
  1353. if ((dma_error = HWIF(drive)->dmaproc(ide_dma_end, drive))) {
  1354. printk("ide-cd: write dma errorn");
  1355. HWIF(drive)->dmaproc(ide_dma_off, drive);
  1356. }
  1357. }
  1358. if (cdrom_decode_status(&startstop, drive, 0, &stat)) {
  1359. printk("ide-cd: write_intr decode_status badn");
  1360. return startstop;
  1361. }
  1362.  
  1363. /*
  1364.  * using dma, transfer is complete now
  1365.  */
  1366. if (dma) {
  1367. if (dma_error)
  1368. return ide_error(drive, "dma error", stat);
  1369. rq = HWGROUP(drive)->rq;
  1370. for (i = rq->nr_sectors; i > 0;) {
  1371. i -= rq->current_nr_sectors;
  1372. ide_end_request(1, HWGROUP(drive));
  1373. }
  1374. return ide_stopped;
  1375. }
  1376. /* Read the interrupt reason and the transfer length. */
  1377. ireason = IN_BYTE(IDE_NSECTOR_REG);
  1378. len = IN_BYTE(IDE_LCYL_REG) + 256 * IN_BYTE(IDE_HCYL_REG);
  1379. /* If DRQ is clear, the command has completed. */
  1380. if ((stat & DRQ_STAT) == 0) {
  1381. /* If we're not done writing, complain.
  1382.  * Otherwise, complete the command normally.
  1383.  */
  1384. uptodate = 1;
  1385. if (rq->current_nr_sectors > 0) {
  1386. printk("%s: write_intr: data underrun (%ld blocks)n",
  1387. drive->name, rq->current_nr_sectors);
  1388. uptodate = 0;
  1389. }
  1390. cdrom_end_request(uptodate, drive);
  1391. return ide_stopped;
  1392. }
  1393. /* Check that the drive is expecting to do the same thing we are. */
  1394. if (ireason & 3)
  1395. if (cdrom_write_check_ireason(drive, len, ireason))
  1396. return ide_stopped;
  1397. sectors_to_transfer = len / SECTOR_SIZE;
  1398. /*
  1399.  * now loop and write out the data
  1400.  */
  1401. while (sectors_to_transfer > 0) {
  1402. int this_transfer;
  1403. if (!rq->current_nr_sectors) {
  1404. printk("ide-cd: write_intr: oopsn");
  1405. break;
  1406. }
  1407. /*
  1408.  * Figure out how many sectors we can transfer
  1409.  */
  1410. this_transfer = MIN(sectors_to_transfer,rq->current_nr_sectors);
  1411. while (this_transfer > 0) {
  1412. atapi_output_bytes(drive, rq->buffer, SECTOR_SIZE);
  1413. rq->buffer += SECTOR_SIZE;
  1414. --rq->nr_sectors;
  1415. --rq->current_nr_sectors;
  1416. ++rq->sector;
  1417. --this_transfer;
  1418. --sectors_to_transfer;
  1419. }
  1420. /*
  1421.  * current buffer complete, move on
  1422.  */
  1423. if (rq->current_nr_sectors == 0 && rq->nr_sectors)
  1424. cdrom_end_request (1, drive);
  1425. }
  1426. /* re-arm handler */
  1427. ide_set_handler(drive, &cdrom_write_intr, 5 * WAIT_CMD, NULL);
  1428. return ide_started;
  1429. }
  1430. static ide_startstop_t cdrom_start_write_cont(ide_drive_t *drive)
  1431. {
  1432. struct packet_command pc; /* packet_command_t pc; */
  1433. struct request *rq = HWGROUP(drive)->rq;
  1434. unsigned nframes, frame;
  1435. nframes = rq->nr_sectors >> 2;
  1436. frame = rq->sector >> 2;
  1437. memset(&pc.c, 0, sizeof(pc.c));
  1438. /*
  1439.  * we might as well use WRITE_12, but none of the device I have
  1440.  * support the streaming feature anyway, so who cares.
  1441.  */
  1442. pc.c[0] = GPCMD_WRITE_10;
  1443. #if 0 /* the immediate bit */
  1444. pc.c[1] = 1 << 3;
  1445. #endif
  1446. pc.c[7] = (nframes >> 8) & 0xff;
  1447. pc.c[8] = nframes & 0xff;
  1448. put_unaligned(cpu_to_be32(frame), (unsigned int *)&pc.c[2]);
  1449. pc.timeout = 2 * WAIT_CMD;
  1450. return cdrom_transfer_packet_command(drive, &pc, cdrom_write_intr);
  1451. }
  1452. static ide_startstop_t cdrom_start_write(ide_drive_t *drive, struct request *rq)
  1453. {
  1454. struct cdrom_info *info = drive->driver_data;
  1455. /*
  1456.  * writes *must* be 2kB frame aligned
  1457.  */
  1458. if ((rq->nr_sectors & 3) || (rq->sector & 3)) {
  1459. cdrom_end_request(0, drive);
  1460. return ide_stopped;
  1461. }
  1462. /*
  1463.  * for dvd-ram and such media, it's a really big deal to get
  1464.  * big writes all the time. so scour the queue and attempt to
  1465.  * remerge requests, often the plugging will not have had time
  1466.  * to do this properly
  1467.  */
  1468. cdrom_attempt_remerge(drive, rq);
  1469. info->nsectors_buffered = 0;
  1470.         /* use dma, if possible. we don't need to check more, since we
  1471.  * know that the transfer is always (at least!) 2KB aligned */
  1472. info->dma = drive->using_dma ? 1 : 0;
  1473. info->cmd = WRITE;
  1474. /* Start sending the read request to the drive. */
  1475. return cdrom_start_packet_command(drive, 32768, cdrom_start_write_cont);
  1476. }
  1477. /****************************************************************************
  1478.  * cdrom driver request routine.
  1479.  */
  1480. static ide_startstop_t
  1481. ide_do_rw_cdrom (ide_drive_t *drive, struct request *rq, unsigned long block)
  1482. {
  1483. ide_startstop_t action;
  1484. struct cdrom_info *info = drive->driver_data;
  1485. switch (rq->cmd) {
  1486. case WRITE:
  1487. case READ: {
  1488. if (CDROM_CONFIG_FLAGS(drive)->seeking) {
  1489. unsigned long elpased = jiffies - info->start_seek;
  1490. int stat = GET_STAT();
  1491. if ((stat & SEEK_STAT) != SEEK_STAT) {
  1492. if (elpased < IDECD_SEEK_TIMEOUT) {
  1493. ide_stall_queue(drive, IDECD_SEEK_TIMER);
  1494. return ide_stopped;
  1495. }
  1496. printk ("%s: DSC timeoutn", drive->name);
  1497. }
  1498. CDROM_CONFIG_FLAGS(drive)->seeking = 0;
  1499. }
  1500. if (IDE_LARGE_SEEK(info->last_block, block, IDECD_SEEK_THRESHOLD) && drive->dsc_overlap)
  1501. action = cdrom_start_seek (drive, block);
  1502. else {
  1503. if (rq->cmd == READ)
  1504. action = cdrom_start_read(drive, block);
  1505. else
  1506. action = cdrom_start_write(drive, rq);
  1507. }
  1508. info->last_block = block;
  1509. return action;
  1510. }
  1511. case PACKET_COMMAND:
  1512. case REQUEST_SENSE_COMMAND: {
  1513. return cdrom_do_packet_command(drive);
  1514. }
  1515. case RESET_DRIVE_COMMAND: {
  1516. cdrom_end_request(1, drive);
  1517. return ide_do_reset(drive);
  1518. }
  1519. default: {
  1520. printk("ide-cd: bad cmd %dn", rq->cmd);
  1521. cdrom_end_request(0, drive);
  1522. return ide_stopped;
  1523. }
  1524. }
  1525. }
  1526. /****************************************************************************
  1527.  * Ioctl handling.
  1528.  *
  1529.  * Routines which queue packet commands take as a final argument a pointer
  1530.  * to a request_sense struct.  If execution of the command results
  1531.  * in an error with a CHECK CONDITION status, this structure will be filled
  1532.  * with the results of the subsequent request sense command.  The pointer
  1533.  * can also be NULL, in which case no sense information is returned.
  1534.  */
  1535. #if ! STANDARD_ATAPI
  1536. static inline
  1537. int bin2bcd (int x)
  1538. {
  1539. return (x%10) | ((x/10) << 4);
  1540. }
  1541. static inline
  1542. int bcd2bin (int x)
  1543. {
  1544. return (x >> 4) * 10 + (x & 0x0f);
  1545. }
  1546. static
  1547. void msf_from_bcd (struct atapi_msf *msf)
  1548. {
  1549. msf->minute = bcd2bin (msf->minute);
  1550. msf->second = bcd2bin (msf->second);
  1551. msf->frame  = bcd2bin (msf->frame);
  1552. }
  1553. #endif /* not STANDARD_ATAPI */
  1554. static inline
  1555. void lba_to_msf (int lba, byte *m, byte *s, byte *f)
  1556. {
  1557. lba += CD_MSF_OFFSET;
  1558. lba &= 0xffffff;  /* negative lbas use only 24 bits */
  1559. *m = lba / (CD_SECS * CD_FRAMES);
  1560. lba %= (CD_SECS * CD_FRAMES);
  1561. *s = lba / CD_FRAMES;
  1562. *f = lba % CD_FRAMES;
  1563. }
  1564. static inline
  1565. int msf_to_lba (byte m, byte s, byte f)
  1566. {
  1567. return (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_MSF_OFFSET;
  1568. }
  1569. static int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
  1570. {
  1571. struct packet_command pc;
  1572. struct cdrom_info *info = drive->driver_data;
  1573. struct cdrom_device_info *cdi = &info->devinfo;
  1574. memset(&pc, 0, sizeof(pc));
  1575. pc.sense = sense;
  1576. pc.c[0] = GPCMD_TEST_UNIT_READY;
  1577. #if ! STANDARD_ATAPI
  1578.         /* the Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to 
  1579.            switch CDs instead of supporting the LOAD_UNLOAD opcode   */
  1580.         pc.c[7] = cdi->sanyo_slot % 3;
  1581. #endif /* not STANDARD_ATAPI */
  1582. return cdrom_queue_packet_command(drive, &pc);
  1583. }
  1584. /* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
  1585. static int
  1586. cdrom_lockdoor(ide_drive_t *drive, int lockflag, struct request_sense *sense)
  1587. {
  1588. struct request_sense my_sense;
  1589. struct packet_command pc;
  1590. int stat;
  1591. if (sense == NULL)
  1592. sense = &my_sense;
  1593. /* If the drive cannot lock the door, just pretend. */
  1594. if (CDROM_CONFIG_FLAGS(drive)->no_doorlock) {
  1595. stat = 0;
  1596. } else {
  1597. memset(&pc, 0, sizeof(pc));
  1598. pc.sense = sense;
  1599. pc.c[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
  1600. pc.c[4] = lockflag ? 1 : 0;
  1601. stat = cdrom_queue_packet_command (drive, &pc);
  1602. }
  1603. /* If we got an illegal field error, the drive
  1604.    probably cannot lock the door. */
  1605. if (stat != 0 &&
  1606.     sense->sense_key == ILLEGAL_REQUEST &&
  1607.     (sense->asc == 0x24 || sense->asc == 0x20)) {
  1608. printk ("%s: door locking not supportedn",
  1609. drive->name);
  1610. CDROM_CONFIG_FLAGS (drive)->no_doorlock = 1;
  1611. stat = 0;
  1612. }
  1613. /* no medium, that's alright. */
  1614. if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a)
  1615. stat = 0;
  1616. if (stat == 0)
  1617. CDROM_STATE_FLAGS (drive)->door_locked = lockflag;
  1618. return stat;
  1619. }
  1620. /* Eject the disk if EJECTFLAG is 0.
  1621.    If EJECTFLAG is 1, try to reload the disk. */
  1622. static int cdrom_eject(ide_drive_t *drive, int ejectflag,
  1623.        struct request_sense *sense)
  1624. {
  1625. struct packet_command pc;
  1626. if (CDROM_CONFIG_FLAGS(drive)->no_eject && !ejectflag)
  1627. return -EDRIVE_CANT_DO_THIS;
  1628. /* reload fails on some drives, if the tray is locked */
  1629. if (CDROM_STATE_FLAGS(drive)->door_locked && ejectflag)
  1630. return 0;
  1631. memset(&pc, 0, sizeof (pc));
  1632. pc.sense = sense;
  1633. pc.c[0] = GPCMD_START_STOP_UNIT;
  1634. pc.c[4] = 0x02 + (ejectflag != 0);
  1635. return cdrom_queue_packet_command (drive, &pc);
  1636. }
  1637. static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
  1638.        struct request_sense *sense)
  1639. {
  1640. struct {
  1641. __u32 lba;
  1642. __u32 blocklen;
  1643. } capbuf;
  1644. int stat;
  1645. struct packet_command pc;
  1646. memset(&pc, 0, sizeof(pc));
  1647. pc.sense = sense;
  1648. pc.c[0] = GPCMD_READ_CDVD_CAPACITY;
  1649. pc.buffer = (char *)&capbuf;
  1650. pc.buflen = sizeof(capbuf);
  1651. stat = cdrom_queue_packet_command(drive, &pc);
  1652. if (stat == 0)
  1653. *capacity = 1 + be32_to_cpu(capbuf.lba);
  1654. return stat;
  1655. }
  1656. static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
  1657. int format, char *buf, int buflen,
  1658. struct request_sense *sense)
  1659. {
  1660. struct packet_command pc;
  1661. memset(&pc, 0, sizeof(pc));
  1662. pc.sense = sense;
  1663. pc.buffer =  buf;
  1664. pc.buflen = buflen;
  1665. pc.quiet = 1;
  1666. pc.c[0] = GPCMD_READ_TOC_PMA_ATIP;
  1667. pc.c[6] = trackno;
  1668. pc.c[7] = (buflen >> 8);
  1669. pc.c[8] = (buflen & 0xff);
  1670. pc.c[9] = (format << 6);
  1671. if (msf_flag)
  1672. pc.c[1] = 2;
  1673. return cdrom_queue_packet_command (drive, &pc);
  1674. }
  1675. /* Try to read the entire TOC for the disk into our internal buffer. */
  1676. static int cdrom_read_toc(ide_drive_t *drive, struct request_sense *sense)
  1677. {
  1678. int minor, stat, ntracks, i;
  1679. kdev_t dev;
  1680. struct cdrom_info *info = drive->driver_data;
  1681. struct atapi_toc *toc = info->toc;
  1682. struct {
  1683. struct atapi_toc_header hdr;
  1684. struct atapi_toc_entry  ent;
  1685. } ms_tmp;
  1686. if (toc == NULL) {
  1687. /* Try to allocate space. */
  1688. toc = (struct atapi_toc *) kmalloc (sizeof (struct atapi_toc),
  1689.     GFP_KERNEL);
  1690. info->toc = toc;
  1691. if (toc == NULL) {
  1692. printk ("%s: No cdrom TOC buffer!n", drive->name);
  1693. return -ENOMEM;
  1694. }
  1695. }
  1696. /* Check to see if the existing data is still valid.
  1697.    If it is, just return. */
  1698. (void) cdrom_check_status(drive, sense);
  1699. if (CDROM_STATE_FLAGS(drive)->toc_valid)
  1700. return 0;
  1701. /* First read just the header, so we know how long the TOC is. */
  1702. stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
  1703.     sizeof(struct atapi_toc_header), sense);
  1704. if (stat) return stat;
  1705. #if ! STANDARD_ATAPI
  1706. if (CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd) {
  1707. toc->hdr.first_track = bcd2bin (toc->hdr.first_track);
  1708. toc->hdr.last_track  = bcd2bin (toc->hdr.last_track);
  1709. }
  1710. #endif  /* not STANDARD_ATAPI */
  1711. ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
  1712. if (ntracks <= 0)
  1713. return -EIO;
  1714. if (ntracks > MAX_TRACKS)
  1715. ntracks = MAX_TRACKS;
  1716. /* Now read the whole schmeer. */
  1717. stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
  1718.   (char *)&toc->hdr,
  1719.    sizeof(struct atapi_toc_header) +
  1720.    (ntracks + 1) *
  1721.    sizeof(struct atapi_toc_entry), sense);
  1722. if (stat && toc->hdr.first_track > 1) {
  1723. /* Cds with CDI tracks only don't have any TOC entries,
  1724.    despite of this the returned values are
  1725.    first_track == last_track = number of CDI tracks + 1,
  1726.    so that this case is indistinguishable from the same
  1727.    layout plus an additional audio track.
  1728.    If we get an error for the regular case, we assume
  1729.    a CDI without additional audio tracks. In this case
  1730.    the readable TOC is empty (CDI tracks are not included)
  1731.    and only holds the Leadout entry. Heiko Ei遞eldt */
  1732. ntracks = 0;
  1733. stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
  1734.    (char *)&toc->hdr,
  1735.    sizeof(struct atapi_toc_header) +
  1736.    (ntracks + 1) *
  1737.    sizeof(struct atapi_toc_entry),
  1738.    sense);
  1739. if (stat) {
  1740. return stat;
  1741. }
  1742. #if ! STANDARD_ATAPI
  1743. if (CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd) {
  1744. toc->hdr.first_track = bin2bcd(CDROM_LEADOUT);
  1745. toc->hdr.last_track = bin2bcd(CDROM_LEADOUT);
  1746. } else
  1747. #endif  /* not STANDARD_ATAPI */
  1748. {
  1749. toc->hdr.first_track = CDROM_LEADOUT;
  1750. toc->hdr.last_track = CDROM_LEADOUT;
  1751. }
  1752. }
  1753. if (stat)
  1754. return stat;
  1755. toc->hdr.toc_length = ntohs (toc->hdr.toc_length);
  1756. #if ! STANDARD_ATAPI
  1757. if (CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd) {
  1758. toc->hdr.first_track = bcd2bin (toc->hdr.first_track);
  1759. toc->hdr.last_track  = bcd2bin (toc->hdr.last_track);
  1760. }
  1761. #endif  /* not STANDARD_ATAPI */
  1762. for (i=0; i<=ntracks; i++) {
  1763. #if ! STANDARD_ATAPI
  1764. if (CDROM_CONFIG_FLAGS (drive)->tocaddr_as_bcd) {
  1765. if (CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd)
  1766. toc->ent[i].track = bcd2bin (toc->ent[i].track);
  1767. msf_from_bcd (&toc->ent[i].addr.msf);
  1768. }
  1769. #endif  /* not STANDARD_ATAPI */
  1770. toc->ent[i].addr.lba = msf_to_lba (toc->ent[i].addr.msf.minute,
  1771.    toc->ent[i].addr.msf.second,
  1772.    toc->ent[i].addr.msf.frame);
  1773. }
  1774. /* Read the multisession information. */
  1775. if (toc->hdr.first_track != CDROM_LEADOUT) {
  1776. /* Read the multisession information. */
  1777. stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
  1778.    sizeof(ms_tmp), sense);
  1779. if (stat) return stat;
  1780. } else {
  1781. ms_tmp.ent.addr.msf.minute = 0;
  1782. ms_tmp.ent.addr.msf.second = 2;
  1783. ms_tmp.ent.addr.msf.frame  = 0;
  1784. ms_tmp.hdr.first_track = ms_tmp.hdr.last_track = CDROM_LEADOUT;
  1785. }
  1786. #if ! STANDARD_ATAPI
  1787. if (CDROM_CONFIG_FLAGS (drive)->tocaddr_as_bcd)
  1788. msf_from_bcd (&ms_tmp.ent.addr.msf);
  1789. #endif  /* not STANDARD_ATAPI */
  1790. toc->last_session_lba = msf_to_lba (ms_tmp.ent.addr.msf.minute,
  1791.     ms_tmp.ent.addr.msf.second,
  1792.     ms_tmp.ent.addr.msf.frame);
  1793. toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
  1794. /* Now try to get the total cdrom capacity. */
  1795. minor = (drive->select.b.unit) << PARTN_BITS;
  1796. dev = MKDEV(HWIF(drive)->major, minor);
  1797. stat = cdrom_get_last_written(dev, &toc->capacity);
  1798. if (stat)
  1799. stat = cdrom_read_capacity(drive, &toc->capacity, sense);
  1800. if (stat)
  1801. toc->capacity = 0x1fffff;
  1802. HWIF(drive)->gd->sizes[drive->select.b.unit << PARTN_BITS] = (toc->capacity * SECTORS_PER_FRAME) >> (BLOCK_SIZE_BITS - 9);
  1803. drive->part[0].nr_sects = toc->capacity * SECTORS_PER_FRAME;
  1804. /* Remember that we've read this stuff. */
  1805. CDROM_STATE_FLAGS (drive)->toc_valid = 1;
  1806. return 0;
  1807. }
  1808. static int cdrom_read_subchannel(ide_drive_t *drive, int format, char *buf,
  1809.  int buflen, struct request_sense *sense)
  1810. {
  1811. struct packet_command pc;
  1812. memset(&pc, 0, sizeof(pc));
  1813. pc.sense = sense;
  1814. pc.buffer = buf;
  1815. pc.buflen = buflen;
  1816. pc.c[0] = GPCMD_READ_SUBCHANNEL;
  1817. pc.c[1] = 2;     /* MSF addressing */
  1818. pc.c[2] = 0x40;  /* request subQ data */
  1819. pc.c[3] = format;
  1820. pc.c[7] = (buflen >> 8);
  1821. pc.c[8] = (buflen & 0xff);
  1822. return cdrom_queue_packet_command(drive, &pc);
  1823. }
  1824. /* ATAPI cdrom drives are free to select the speed you request or any slower
  1825.    rate :-( Requesting too fast a speed will _not_ produce an error. */
  1826. static int cdrom_select_speed(ide_drive_t *drive, int speed,
  1827.       struct request_sense *sense)
  1828. {
  1829. struct packet_command pc;
  1830. memset(&pc, 0, sizeof(pc));
  1831. pc.sense = sense;
  1832. if (speed == 0)
  1833. speed = 0xffff; /* set to max */
  1834. else
  1835. speed *= 177;   /* Nx to kbytes/s */
  1836. pc.c[0] = GPCMD_SET_SPEED;
  1837. /* Read Drive speed in kbytes/second MSB */
  1838. pc.c[2] = (speed >> 8) & 0xff;
  1839. /* Read Drive speed in kbytes/second LSB */
  1840. pc.c[3] = speed & 0xff;
  1841. if (CDROM_CONFIG_FLAGS(drive)->cd_r ||
  1842.     CDROM_CONFIG_FLAGS(drive)->cd_rw ||
  1843.     CDROM_CONFIG_FLAGS(drive)->dvd_r) {
  1844. /* Write Drive speed in kbytes/second MSB */
  1845. pc.c[4] = (speed >> 8) & 0xff;
  1846. /* Write Drive speed in kbytes/second LSB */
  1847. pc.c[5] = speed & 0xff;
  1848.        }
  1849. return cdrom_queue_packet_command(drive, &pc);
  1850. }
  1851. static int cdrom_play_audio(ide_drive_t *drive, int lba_start, int lba_end)
  1852. {
  1853. struct request_sense sense;
  1854. struct packet_command pc;
  1855. memset(&pc, 0, sizeof (pc));
  1856. pc.sense = &sense;
  1857. pc.c[0] = GPCMD_PLAY_AUDIO_MSF;
  1858. lba_to_msf(lba_start, &pc.c[3], &pc.c[4], &pc.c[5]);
  1859. lba_to_msf(lba_end-1, &pc.c[6], &pc.c[7], &pc.c[8]);
  1860. return cdrom_queue_packet_command(drive, &pc);
  1861. }
  1862. static int cdrom_get_toc_entry(ide_drive_t *drive, int track,
  1863. struct atapi_toc_entry **ent)
  1864. {
  1865. struct cdrom_info *info = drive->driver_data;
  1866. struct atapi_toc *toc = info->toc;
  1867. int ntracks;
  1868. /*
  1869.  * don't serve cached data, if the toc isn't valid
  1870.  */
  1871. if (!CDROM_STATE_FLAGS(drive)->toc_valid)
  1872. return -EINVAL;
  1873. /* Check validity of requested track number. */
  1874. ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
  1875. if (toc->hdr.first_track == CDROM_LEADOUT) ntracks = 0;
  1876. if (track == CDROM_LEADOUT)
  1877. *ent = &toc->ent[ntracks];
  1878. else if (track < toc->hdr.first_track ||
  1879.  track > toc->hdr.last_track)
  1880. return -EINVAL;
  1881. else
  1882. *ent = &toc->ent[track - toc->hdr.first_track];
  1883. return 0;
  1884. }
  1885. /* the generic packet interface to cdrom.c */
  1886. static int ide_cdrom_packet(struct cdrom_device_info *cdi,
  1887.     struct cdrom_generic_command *cgc)
  1888. {
  1889. struct packet_command pc;
  1890. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  1891. if (cgc->timeout <= 0)
  1892. cgc->timeout = WAIT_CMD;
  1893. /* here we queue the commands from the uniform CD-ROM
  1894.    layer. the packet must be complete, as we do not
  1895.    touch it at all. */
  1896. memset(&pc, 0, sizeof(pc));
  1897. memcpy(pc.c, cgc->cmd, CDROM_PACKET_SIZE);
  1898. pc.buffer = cgc->buffer;
  1899. pc.buflen = cgc->buflen;
  1900. pc.quiet = cgc->quiet;
  1901. pc.timeout = cgc->timeout;
  1902. pc.sense = cgc->sense;
  1903. return cgc->stat = cdrom_queue_packet_command(drive, &pc);
  1904. }
  1905. static
  1906. int ide_cdrom_dev_ioctl (struct cdrom_device_info *cdi,
  1907.  unsigned int cmd, unsigned long arg)
  1908. {
  1909. struct cdrom_generic_command cgc;
  1910. char buffer[16];
  1911. int stat;
  1912. init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
  1913. /* These will be moved into the Uniform layer shortly... */
  1914. switch (cmd) {
  1915.   case CDROMSETSPINDOWN: {
  1916.   char spindown;
  1917.  
  1918.   if (copy_from_user(&spindown, (void *) arg, sizeof(char)))
  1919. return -EFAULT;
  1920.  
  1921.                 if ((stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0)))
  1922. return stat;
  1923.   buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
  1924.   return cdrom_mode_select(cdi, &cgc);
  1925.   } 
  1926.  
  1927.   case CDROMGETSPINDOWN: {
  1928.   char spindown;
  1929.  
  1930.                 if ((stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0)))
  1931. return stat;
  1932.  
  1933.   spindown = buffer[11] & 0x0f;
  1934.  
  1935. if (copy_to_user((void *) arg, &spindown, sizeof (char)))
  1936. return -EFAULT;
  1937.  
  1938.   return 0;
  1939.   }
  1940.   
  1941. default:
  1942. return -EINVAL;
  1943. }
  1944. }
  1945. static
  1946. int ide_cdrom_audio_ioctl (struct cdrom_device_info *cdi,
  1947.    unsigned int cmd, void *arg)
  1948.    
  1949. {
  1950. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  1951. struct cdrom_info *info = drive->driver_data;
  1952. int stat;
  1953. switch (cmd) {
  1954. /*
  1955.  * emulate PLAY_AUDIO_TI command with PLAY_AUDIO_10, since
  1956.  * atapi doesn't support it
  1957.  */
  1958. case CDROMPLAYTRKIND: {
  1959. unsigned long lba_start, lba_end;
  1960. struct cdrom_ti *ti = (struct cdrom_ti *)arg;
  1961. struct atapi_toc_entry *first_toc, *last_toc;
  1962. stat = cdrom_get_toc_entry(drive, ti->cdti_trk0, &first_toc);
  1963. if (stat)
  1964. return stat;
  1965. stat = cdrom_get_toc_entry(drive, ti->cdti_trk1, &last_toc);
  1966. if (stat)
  1967. return stat;
  1968. if (ti->cdti_trk1 != CDROM_LEADOUT)
  1969. ++last_toc;
  1970. lba_start = first_toc->addr.lba;
  1971. lba_end   = last_toc->addr.lba;
  1972. if (lba_end <= lba_start)
  1973. return -EINVAL;
  1974. return cdrom_play_audio(drive, lba_start, lba_end);
  1975. }
  1976. case CDROMREADTOCHDR: {
  1977. struct cdrom_tochdr *tochdr = (struct cdrom_tochdr *) arg;
  1978. struct atapi_toc *toc;
  1979. /* Make sure our saved TOC is valid. */
  1980. stat = cdrom_read_toc(drive, NULL);
  1981. if (stat) return stat;
  1982. toc = info->toc;
  1983. tochdr->cdth_trk0 = toc->hdr.first_track;
  1984. tochdr->cdth_trk1 = toc->hdr.last_track;
  1985. return 0;
  1986. }
  1987. case CDROMREADTOCENTRY: {
  1988. struct cdrom_tocentry *tocentry = (struct cdrom_tocentry*) arg;
  1989. struct atapi_toc_entry *toce;
  1990. stat = cdrom_get_toc_entry (drive, tocentry->cdte_track, &toce);
  1991. if (stat) return stat;
  1992. tocentry->cdte_ctrl = toce->control;
  1993. tocentry->cdte_adr  = toce->adr;
  1994. if (tocentry->cdte_format == CDROM_MSF) {
  1995. lba_to_msf (toce->addr.lba,
  1996.    &tocentry->cdte_addr.msf.minute,
  1997.    &tocentry->cdte_addr.msf.second,
  1998.    &tocentry->cdte_addr.msf.frame);
  1999. } else
  2000. tocentry->cdte_addr.lba = toce->addr.lba;
  2001. return 0;
  2002. }
  2003. default:
  2004. return -EINVAL;
  2005. }
  2006. }
  2007. static
  2008. int ide_cdrom_reset (struct cdrom_device_info *cdi)
  2009. {
  2010. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2011. struct request_sense sense;
  2012. struct request req;
  2013. int ret;
  2014. ide_init_drive_cmd (&req);
  2015. req.cmd = RESET_DRIVE_COMMAND;
  2016. ret = ide_do_drive_cmd(drive, &req, ide_wait);
  2017. /*
  2018.  * A reset will unlock the door. If it was previously locked,
  2019.  * lock it again.
  2020.  */
  2021. if (CDROM_STATE_FLAGS(drive)->door_locked)
  2022. (void) cdrom_lockdoor(drive, 1, &sense);
  2023. return ret;
  2024. }
  2025. static
  2026. int ide_cdrom_tray_move (struct cdrom_device_info *cdi, int position)
  2027. {
  2028. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2029. struct request_sense sense;
  2030. if (position) {
  2031. int stat = cdrom_lockdoor(drive, 0, &sense);
  2032. if (stat) return stat;
  2033. }
  2034. return cdrom_eject(drive, !position, &sense);
  2035. }
  2036. static
  2037. int ide_cdrom_lock_door (struct cdrom_device_info *cdi, int lock)
  2038. {
  2039. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2040. return cdrom_lockdoor(drive, lock, NULL);
  2041. }
  2042. static
  2043. int ide_cdrom_select_speed (struct cdrom_device_info *cdi, int speed)
  2044. {
  2045. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2046. struct request_sense sense;
  2047. int stat;
  2048. if ((stat = cdrom_select_speed (drive, speed, &sense)) < 0)
  2049. return stat;
  2050.         cdi->speed = CDROM_STATE_FLAGS (drive)->current_speed;
  2051.         return 0;
  2052. }
  2053. static
  2054. int ide_cdrom_drive_status (struct cdrom_device_info *cdi, int slot_nr)
  2055. {
  2056. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2057. if (slot_nr == CDSL_CURRENT) {
  2058. struct request_sense sense;
  2059. int stat = cdrom_check_status(drive, &sense);
  2060. if (stat == 0 || sense.sense_key == UNIT_ATTENTION)
  2061. return CDS_DISC_OK;
  2062. if (sense.sense_key == NOT_READY && sense.asc == 0x04 &&
  2063.     sense.ascq == 0x04)
  2064. return CDS_DISC_OK;
  2065. /*
  2066.  * If not using Mt Fuji extended media tray reports,
  2067.  * just return TRAY_OPEN since ATAPI doesn't provide
  2068.  * any other way to detect this...
  2069.  */
  2070. if (sense.sense_key == NOT_READY) {
  2071. if (sense.asc == 0x3a && sense.ascq == 1)
  2072. return CDS_NO_DISC;
  2073. else
  2074. return CDS_TRAY_OPEN;
  2075. }
  2076. return CDS_DRIVE_NOT_READY;
  2077. }
  2078. return -EINVAL;
  2079. }
  2080. static
  2081. int ide_cdrom_get_last_session (struct cdrom_device_info *cdi,
  2082. struct cdrom_multisession *ms_info)
  2083. {
  2084. struct atapi_toc *toc;
  2085. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2086. struct cdrom_info *info = drive->driver_data;
  2087. struct request_sense sense;
  2088. int ret;
  2089. if (!CDROM_STATE_FLAGS(drive)->toc_valid || info->toc == NULL)
  2090. if ((ret = cdrom_read_toc(drive, &sense)))
  2091. return ret;
  2092. toc = info->toc;
  2093. ms_info->addr.lba = toc->last_session_lba;
  2094. ms_info->xa_flag = toc->xa_flag;
  2095. return 0;
  2096. }
  2097. static
  2098. int ide_cdrom_get_mcn (struct cdrom_device_info *cdi,
  2099.        struct cdrom_mcn *mcn_info)
  2100. {
  2101. int stat;
  2102. char mcnbuf[24];
  2103. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2104. /* get MCN */
  2105. if ((stat = cdrom_read_subchannel(drive, 2, mcnbuf, sizeof (mcnbuf), NULL)))
  2106. return stat;
  2107. memcpy (mcn_info->medium_catalog_number, mcnbuf+9,
  2108. sizeof (mcn_info->medium_catalog_number)-1);
  2109. mcn_info->medium_catalog_number[sizeof (mcn_info->medium_catalog_number)-1]
  2110. = '';
  2111. return 0;
  2112. }
  2113. /****************************************************************************
  2114.  * Other driver requests (open, close, check media change).
  2115.  */
  2116. static
  2117. int ide_cdrom_check_media_change_real (struct cdrom_device_info *cdi,
  2118.        int slot_nr)
  2119. {
  2120. ide_drive_t *drive = (ide_drive_t*) cdi->handle;
  2121. int retval;
  2122. if (slot_nr == CDSL_CURRENT) {
  2123. (void) cdrom_check_status(drive, NULL);
  2124. retval = CDROM_STATE_FLAGS (drive)->media_changed;
  2125. CDROM_STATE_FLAGS (drive)->media_changed = 0;
  2126. return retval;
  2127. } else {
  2128. return -EINVAL;
  2129. }
  2130. }
  2131. static
  2132. int ide_cdrom_open_real (struct cdrom_device_info *cdi, int purpose)
  2133. {
  2134. return 0;
  2135. }
  2136. /*
  2137.  * Close down the device.  Invalidate all cached blocks.
  2138.  */
  2139. static
  2140. void ide_cdrom_release_real (struct cdrom_device_info *cdi)
  2141. {
  2142. }
  2143. /****************************************************************************
  2144.  * Device initialization.
  2145.  */
  2146. static struct cdrom_device_ops ide_cdrom_dops = {
  2147. open: ide_cdrom_open_real,
  2148. release: ide_cdrom_release_real,
  2149. drive_status: ide_cdrom_drive_status,
  2150. media_changed: ide_cdrom_check_media_change_real,
  2151. tray_move: ide_cdrom_tray_move,
  2152. lock_door: ide_cdrom_lock_door,
  2153. select_speed: ide_cdrom_select_speed,
  2154. get_last_session: ide_cdrom_get_last_session,
  2155. get_mcn: ide_cdrom_get_mcn,
  2156. reset: ide_cdrom_reset,
  2157. audio_ioctl: ide_cdrom_audio_ioctl,
  2158. dev_ioctl: ide_cdrom_dev_ioctl,
  2159. capability: CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK |
  2160. CDC_SELECT_SPEED | CDC_SELECT_DISC |
  2161. CDC_MULTI_SESSION | CDC_MCN |
  2162. CDC_MEDIA_CHANGED | CDC_PLAY_AUDIO | CDC_RESET |
  2163. CDC_IOCTLS | CDC_DRIVE_STATUS | CDC_CD_R |
  2164. CDC_CD_RW | CDC_DVD | CDC_DVD_R| CDC_DVD_RAM |
  2165. CDC_GENERIC_PACKET,
  2166. generic_packet: ide_cdrom_packet,
  2167. };
  2168. static int ide_cdrom_register (ide_drive_t *drive, int nslots)
  2169. {
  2170. struct cdrom_info *info = drive->driver_data;
  2171. struct cdrom_device_info *devinfo = &info->devinfo;
  2172. int minor = (drive->select.b.unit) << PARTN_BITS;
  2173. devinfo->dev = MKDEV (HWIF(drive)->major, minor);
  2174. devinfo->ops = &ide_cdrom_dops;
  2175. devinfo->mask = 0;
  2176. *(int *)&devinfo->speed = CDROM_STATE_FLAGS (drive)->current_speed;
  2177. *(int *)&devinfo->capacity = nslots;
  2178. devinfo->handle = (void *) drive;
  2179. strcpy(devinfo->name, drive->name);
  2180. /* set capability mask to match the probe. */
  2181. if (!CDROM_CONFIG_FLAGS (drive)->cd_r)
  2182. devinfo->mask |= CDC_CD_R;
  2183. if (!CDROM_CONFIG_FLAGS (drive)->cd_rw)
  2184. devinfo->mask |= CDC_CD_RW;
  2185. if (!CDROM_CONFIG_FLAGS (drive)->dvd)
  2186. devinfo->mask |= CDC_DVD;
  2187. if (!CDROM_CONFIG_FLAGS (drive)->dvd_r)
  2188. devinfo->mask |= CDC_DVD_R;
  2189. if (!CDROM_CONFIG_FLAGS (drive)->dvd_ram)
  2190. devinfo->mask |= CDC_DVD_RAM;
  2191. if (!CDROM_CONFIG_FLAGS (drive)->is_changer)
  2192. devinfo->mask |= CDC_SELECT_DISC;
  2193. if (!CDROM_CONFIG_FLAGS (drive)->audio_play)
  2194. devinfo->mask |= CDC_PLAY_AUDIO;
  2195. if (!CDROM_CONFIG_FLAGS (drive)->close_tray)
  2196. devinfo->mask |= CDC_CLOSE_TRAY;
  2197. devinfo->de = devfs_register(drive->de, "cd", DEVFS_FL_DEFAULT,
  2198.      HWIF(drive)->major, minor,
  2199.      S_IFBLK | S_IRUGO | S_IWUGO,
  2200.      ide_fops, NULL);
  2201. return register_cdrom(devinfo);
  2202. }
  2203. static
  2204. int ide_cdrom_get_capabilities(ide_drive_t *drive, struct atapi_capabilities_page *cap)
  2205. {
  2206. struct cdrom_info *info = drive->driver_data;
  2207. struct cdrom_device_info *cdi = &info->devinfo;
  2208. struct cdrom_generic_command cgc;
  2209. int stat, attempts = 3, size = sizeof(*cap);
  2210. /*
  2211.  * ACER50 (and others?) require the full spec length mode sense
  2212.  * page capabilities size, but older drives break.
  2213.  */
  2214. if (drive->id) {
  2215. if (!(!strcmp(drive->id->model, "ATAPI CD ROM DRIVE 50X MAX") ||
  2216.     !strcmp(drive->id->model, "WPI CDS-32X")))
  2217. size -= sizeof(cap->pad);
  2218. }
  2219. /* we have to cheat a little here. the packet will eventually
  2220.  * be queued with ide_cdrom_packet(), which extracts the
  2221.  * drive from cdi->handle. Since this device hasn't been
  2222.  * registered with the Uniform layer yet, it can't do this.
  2223.  * Same goes for cdi->ops.
  2224.  */
  2225. cdi->handle = (ide_drive_t *) drive;
  2226. cdi->ops = &ide_cdrom_dops;
  2227. init_cdrom_command(&cgc, cap, size, CGC_DATA_UNKNOWN);
  2228. do { /* we seem to get stat=0x01,err=0x00 the first time (??) */
  2229. stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
  2230. if (!stat)
  2231. break;
  2232. } while (--attempts);
  2233. return stat;
  2234. }
  2235. static
  2236. int ide_cdrom_probe_capabilities (ide_drive_t *drive)
  2237. {
  2238. struct cdrom_info *info = drive->driver_data;
  2239. struct cdrom_device_info *cdi = &info->devinfo;
  2240. struct atapi_capabilities_page cap;
  2241. int nslots = 1;
  2242. if (CDROM_CONFIG_FLAGS (drive)->nec260) {
  2243. CDROM_CONFIG_FLAGS (drive)->no_eject = 0;                       
  2244. CDROM_CONFIG_FLAGS (drive)->audio_play = 1;       
  2245. return nslots;
  2246. }
  2247. if (ide_cdrom_get_capabilities(drive, &cap))
  2248. return 0;
  2249. if (cap.lock == 0)
  2250. CDROM_CONFIG_FLAGS (drive)->no_doorlock = 1;
  2251. if (cap.eject)
  2252. CDROM_CONFIG_FLAGS (drive)->no_eject = 0;
  2253. if (cap.cd_r_write)
  2254. CDROM_CONFIG_FLAGS (drive)->cd_r = 1;
  2255. if (cap.cd_rw_write)
  2256. CDROM_CONFIG_FLAGS (drive)->cd_rw = 1;
  2257. if (cap.test_write)
  2258. CDROM_CONFIG_FLAGS (drive)->test_write = 1;
  2259. if (cap.dvd_ram_read || cap.dvd_r_read || cap.dvd_rom)
  2260. CDROM_CONFIG_FLAGS (drive)->dvd = 1;
  2261. if (cap.dvd_ram_write)
  2262. CDROM_CONFIG_FLAGS (drive)->dvd_ram = 1;
  2263. if (cap.dvd_r_write)
  2264. CDROM_CONFIG_FLAGS (drive)->dvd_r = 1;
  2265. if (cap.audio_play)
  2266. CDROM_CONFIG_FLAGS (drive)->audio_play = 1;
  2267. if (cap.mechtype == mechtype_caddy || cap.mechtype == mechtype_popup)
  2268. CDROM_CONFIG_FLAGS (drive)->close_tray = 0;
  2269. /* Some drives used by Apple don't advertise audio play
  2270.  * but they do support reading TOC & audio datas
  2271.  */
  2272. if (strcmp (drive->id->model, "MATSHITADVD-ROM SR-8187") == 0 ||
  2273.     strcmp (drive->id->model, "MATSHITADVD-ROM SR-8186") == 0)
  2274. CDROM_CONFIG_FLAGS (drive)->audio_play = 1;
  2275. #if ! STANDARD_ATAPI
  2276. if (cdi->sanyo_slot > 0) {
  2277. CDROM_CONFIG_FLAGS (drive)->is_changer = 1;
  2278. nslots = 3;
  2279. }
  2280. else
  2281. #endif /* not STANDARD_ATAPI */
  2282. if (cap.mechtype == mechtype_individual_changer ||
  2283.     cap.mechtype == mechtype_cartridge_changer) {
  2284. if ((nslots = cdrom_number_of_slots(cdi)) > 1) {
  2285. CDROM_CONFIG_FLAGS (drive)->is_changer = 1;
  2286. CDROM_CONFIG_FLAGS (drive)->supp_disc_present = 1;
  2287. }
  2288. }
  2289. /* The ACER/AOpen 24X cdrom has the speed fields byte-swapped */
  2290. if (drive->id && !drive->id->model[0] && !strncmp(drive->id->fw_rev, "241N", 4)) {
  2291. CDROM_STATE_FLAGS (drive)->current_speed  = 
  2292. (((unsigned int)cap.curspeed) + (176/2)) / 176;
  2293. CDROM_CONFIG_FLAGS (drive)->max_speed = 
  2294. (((unsigned int)cap.maxspeed) + (176/2)) / 176;
  2295. } else {
  2296. CDROM_STATE_FLAGS (drive)->current_speed  = 
  2297. (ntohs(cap.curspeed) + (176/2)) / 176;
  2298. CDROM_CONFIG_FLAGS (drive)->max_speed = 
  2299. (ntohs(cap.maxspeed) + (176/2)) / 176;
  2300. }
  2301. /* don't print speed if the drive reported 0.
  2302.  */
  2303. printk("%s: ATAPI", drive->name);
  2304. if (CDROM_CONFIG_FLAGS(drive)->max_speed)
  2305. printk(" %dX", CDROM_CONFIG_FLAGS(drive)->max_speed);
  2306. printk(" %s", CDROM_CONFIG_FLAGS(drive)->dvd ? "DVD-ROM" : "CD-ROM");
  2307. if (CDROM_CONFIG_FLAGS (drive)->dvd_r|CDROM_CONFIG_FLAGS (drive)->dvd_ram)
  2308.          printk (" DVD%s%s", 
  2309.          (CDROM_CONFIG_FLAGS (drive)->dvd_r)? "-R" : "", 
  2310.          (CDROM_CONFIG_FLAGS (drive)->dvd_ram)? "-RAM" : "");
  2311.         if (CDROM_CONFIG_FLAGS (drive)->cd_r|CDROM_CONFIG_FLAGS (drive)->cd_rw) 
  2312.          printk (" CD%s%s", 
  2313.          (CDROM_CONFIG_FLAGS (drive)->cd_r)? "-R" : "", 
  2314.          (CDROM_CONFIG_FLAGS (drive)->cd_rw)? "/RW" : "");
  2315.         if (CDROM_CONFIG_FLAGS (drive)->is_changer) 
  2316.          printk (" changer w/%d slots", nslots);
  2317.         else 
  2318.          printk (" drive");
  2319. printk (", %dkB Cache", be16_to_cpu(cap.buffer_size));
  2320. #ifdef CONFIG_BLK_DEV_IDEDMA
  2321. if (drive->using_dma)
  2322. (void) HWIF(drive)->dmaproc(ide_dma_verbose, drive);
  2323. #endif /* CONFIG_BLK_DEV_IDEDMA */
  2324. printk("n");
  2325. return nslots;
  2326. }
  2327. static void ide_cdrom_add_settings(ide_drive_t *drive)
  2328. {
  2329. int major = HWIF(drive)->major;
  2330. int minor = drive->select.b.unit << PARTN_BITS;
  2331. ide_add_setting(drive, "breada_readahead", SETTING_RW, BLKRAGET, BLKRASET, TYPE_INT, 0, 255, 1, 2, &read_ahead[major], NULL);
  2332. ide_add_setting(drive, "file_readahead", SETTING_RW, BLKFRAGET, BLKFRASET, TYPE_INTA, 0, INT_MAX, 1, 1024, &max_readahead[major][minor], NULL);
  2333. ide_add_setting(drive, "max_kb_per_request", SETTING_RW, BLKSECTGET, BLKSECTSET, TYPE_INTA, 1, 255, 1, 2, &max_sectors[major][minor], NULL);
  2334. ide_add_setting(drive, "dsc_overlap", SETTING_RW, -1, -1, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
  2335. }
  2336. static
  2337. int ide_cdrom_setup (ide_drive_t *drive)
  2338. {
  2339. struct cdrom_info *info = drive->driver_data;
  2340. struct cdrom_device_info *cdi = &info->devinfo;
  2341. int minor = drive->select.b.unit << PARTN_BITS;
  2342. int nslots;
  2343. /*
  2344.  * default to read-only always and fix latter at the bottom
  2345.  */
  2346. set_device_ro(MKDEV(HWIF(drive)->major, minor), 1);
  2347. set_blocksize(MKDEV(HWIF(drive)->major, minor), CD_FRAMESIZE);
  2348. drive->special.all = 0;
  2349. drive->ready_stat = 0;
  2350. CDROM_STATE_FLAGS (drive)->media_changed = 1;
  2351. CDROM_STATE_FLAGS (drive)->toc_valid     = 0;
  2352. CDROM_STATE_FLAGS (drive)->door_locked   = 0;
  2353. #if NO_DOOR_LOCKING
  2354. CDROM_CONFIG_FLAGS (drive)->no_doorlock = 1;
  2355. #else
  2356. CDROM_CONFIG_FLAGS (drive)->no_doorlock = 0;
  2357. #endif
  2358. if (drive->id != NULL)
  2359. CDROM_CONFIG_FLAGS (drive)->drq_interrupt =
  2360. ((drive->id->config & 0x0060) == 0x20);
  2361. else
  2362. CDROM_CONFIG_FLAGS (drive)->drq_interrupt = 0;
  2363. CDROM_CONFIG_FLAGS (drive)->is_changer = 0;
  2364. CDROM_CONFIG_FLAGS (drive)->cd_r = 0;
  2365. CDROM_CONFIG_FLAGS (drive)->cd_rw = 0;
  2366. CDROM_CONFIG_FLAGS (drive)->test_write = 0;
  2367. CDROM_CONFIG_FLAGS (drive)->dvd = 0;
  2368. CDROM_CONFIG_FLAGS (drive)->dvd_r = 0;
  2369. CDROM_CONFIG_FLAGS (drive)->dvd_ram = 0;
  2370. CDROM_CONFIG_FLAGS (drive)->no_eject = 1;
  2371. CDROM_CONFIG_FLAGS (drive)->supp_disc_present = 0;
  2372. CDROM_CONFIG_FLAGS (drive)->audio_play = 0;
  2373. CDROM_CONFIG_FLAGS (drive)->close_tray = 1;
  2374. /* limit transfer size per interrupt. */
  2375. CDROM_CONFIG_FLAGS (drive)->limit_nframes = 0;
  2376. if (drive->id != NULL) {
  2377. /* a testament to the nice quality of Samsung drives... */
  2378. if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-2430"))
  2379. CDROM_CONFIG_FLAGS (drive)->limit_nframes = 1;
  2380. else if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-2432"))
  2381. CDROM_CONFIG_FLAGS (drive)->limit_nframes = 1;
  2382. /* the 3231 model does not support the SET_CD_SPEED command */
  2383. else if (!strcmp(drive->id->model, "SAMSUNG CD-ROM SCR-3231"))
  2384. cdi->mask |= CDC_SELECT_SPEED;
  2385. }
  2386. #if ! STANDARD_ATAPI
  2387. /* by default Sanyo 3 CD changer support is turned off and
  2388.            ATAPI Rev 2.2+ standard support for CD changers is used */
  2389. cdi->sanyo_slot = 0;
  2390. CDROM_CONFIG_FLAGS (drive)->nec260 = 0;
  2391. CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd = 0;
  2392. CDROM_CONFIG_FLAGS (drive)->tocaddr_as_bcd = 0;
  2393. CDROM_CONFIG_FLAGS (drive)->playmsf_as_bcd = 0;
  2394. CDROM_CONFIG_FLAGS (drive)->subchan_as_bcd = 0;
  2395. if (drive->id != NULL) {
  2396. if (strcmp (drive->id->model, "V003S0DS") == 0 &&
  2397.     drive->id->fw_rev[4] == '1' &&
  2398.     drive->id->fw_rev[6] <= '2') {
  2399. /* Vertos 300.
  2400.    Some versions of this drive like to talk BCD. */
  2401. CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd = 1;
  2402. CDROM_CONFIG_FLAGS (drive)->tocaddr_as_bcd = 1;
  2403. CDROM_CONFIG_FLAGS (drive)->playmsf_as_bcd = 1;
  2404. CDROM_CONFIG_FLAGS (drive)->subchan_as_bcd = 1;
  2405. }
  2406. else if (strcmp (drive->id->model, "V006E0DS") == 0 &&
  2407.     drive->id->fw_rev[4] == '1' &&
  2408.     drive->id->fw_rev[6] <= '2') {
  2409. /* Vertos 600 ESD. */
  2410. CDROM_CONFIG_FLAGS (drive)->toctracks_as_bcd = 1;
  2411. }
  2412. else if (strcmp (drive->id->model,
  2413.  "NEC CD-ROM DRIVE:260") == 0 &&
  2414.  strncmp (drive->id->fw_rev, "1.01", 4) == 0) { /* FIXME */
  2415. /* Old NEC260 (not R).
  2416.    This drive was released before the 1.2 version
  2417.    of the spec. */
  2418. CDROM_CONFIG_FLAGS (drive)->tocaddr_as_bcd = 1;
  2419. CDROM_CONFIG_FLAGS (drive)->playmsf_as_bcd = 1;
  2420. CDROM_CONFIG_FLAGS (drive)->subchan_as_bcd = 1;
  2421. CDROM_CONFIG_FLAGS (drive)->nec260         = 1;
  2422. }
  2423. else if (strcmp (drive->id->model, "WEARNES CDD-120") == 0 &&
  2424.  strncmp (drive->id->fw_rev, "A1.1", 4) == 0) { /* FIXME */
  2425. /* Wearnes */
  2426. CDROM_CONFIG_FLAGS (drive)->playmsf_as_bcd = 1;
  2427. CDROM_CONFIG_FLAGS (drive)->subchan_as_bcd = 1;
  2428. }
  2429.                 /* Sanyo 3 CD changer uses a non-standard command
  2430.                     for CD changing */
  2431.                  else if ((strcmp(drive->id->model, "CD-ROM CDR-C3 G") == 0) ||
  2432.                          (strcmp(drive->id->model, "CD-ROM CDR-C3G") == 0) ||
  2433.                          (strcmp(drive->id->model, "CD-ROM CDR_C36") == 0)) {
  2434.                         /* uses CD in slot 0 when value is set to 3 */
  2435.                         cdi->sanyo_slot = 3;
  2436.                 }
  2437. }
  2438. #endif /* not STANDARD_ATAPI */
  2439. info->toc = NULL;
  2440. info->buffer = NULL;
  2441. info->sector_buffered = 0;
  2442. info->nsectors_buffered = 0;
  2443. info->changer_info      = NULL;
  2444. info->last_block = 0;
  2445. info->start_seek = 0;
  2446. nslots = ide_cdrom_probe_capabilities (drive);
  2447. if (CDROM_CONFIG_FLAGS(drive)->dvd_ram)
  2448. set_device_ro(MKDEV(HWIF(drive)->major, minor), 0);
  2449. if (ide_cdrom_register (drive, nslots)) {
  2450. printk ("%s: ide_cdrom_setup failed to register device with the cdrom driver.n", drive->name);
  2451. info->devinfo.handle = NULL;
  2452. return 1;
  2453. }
  2454. ide_cdrom_add_settings(drive);
  2455. return 0;
  2456. }
  2457. /* Forwarding functions to generic routines. */
  2458. static
  2459. int ide_cdrom_ioctl (ide_drive_t *drive,
  2460.      struct inode *inode, struct file *file,
  2461.      unsigned int cmd, unsigned long arg)
  2462. {
  2463. return cdrom_ioctl (inode, file, cmd, arg);
  2464. }
  2465. static
  2466. int ide_cdrom_open (struct inode *ip, struct file *fp, ide_drive_t *drive)
  2467. {
  2468. struct cdrom_info *info = drive->driver_data;
  2469. int rc = -ENOMEM;
  2470. MOD_INC_USE_COUNT;
  2471. if (info->buffer == NULL)
  2472. info->buffer = (char *) kmalloc(SECTOR_BUFFER_SIZE, GFP_KERNEL);
  2473.         if ((info->buffer == NULL) || (rc = cdrom_open(ip, fp))) {
  2474. drive->usage--;
  2475. MOD_DEC_USE_COUNT;
  2476. }
  2477. return rc;
  2478. }
  2479. static
  2480. void ide_cdrom_release (struct inode *inode, struct file *file,
  2481. ide_drive_t *drive)
  2482. {
  2483. cdrom_release (inode, file);
  2484. MOD_DEC_USE_COUNT;
  2485. }
  2486. static
  2487. int ide_cdrom_check_media_change (ide_drive_t *drive)
  2488. {
  2489. return cdrom_media_changed(MKDEV (HWIF (drive)->major,
  2490. (drive->select.b.unit) << PARTN_BITS));
  2491. }
  2492. static
  2493. void ide_cdrom_revalidate (ide_drive_t *drive)
  2494. {
  2495. struct cdrom_info *info = drive->driver_data;
  2496. struct atapi_toc *toc;
  2497. int minor = drive->select.b.unit << PARTN_BITS;
  2498. struct request_sense sense;
  2499. cdrom_read_toc(drive, &sense);
  2500. if (!CDROM_STATE_FLAGS(drive)->toc_valid)
  2501. return;
  2502. toc = info->toc;
  2503. /* for general /dev/cdrom like mounting, one big disc */
  2504. drive->part[0].nr_sects = toc->capacity * SECTORS_PER_FRAME;
  2505. HWIF(drive)->gd->sizes[minor] = toc->capacity * BLOCKS_PER_FRAME;
  2506. /*
  2507.  * reset block size, ide_revalidate_disk incorrectly sets it to
  2508.  * 1024 even for CDROM's
  2509.  */
  2510. blk_size[HWIF(drive)->major] = HWIF(drive)->gd->sizes;
  2511. set_blocksize(MKDEV(HWIF(drive)->major, minor), CD_FRAMESIZE);
  2512. }
  2513. static
  2514. unsigned long ide_cdrom_capacity (ide_drive_t *drive)
  2515. {
  2516. unsigned long capacity;
  2517. if (cdrom_read_capacity(drive, &capacity, NULL))
  2518. return 0;
  2519. return capacity * SECTORS_PER_FRAME;
  2520. }
  2521. static
  2522. int ide_cdrom_cleanup(ide_drive_t *drive)
  2523. {
  2524. struct cdrom_info *info = drive->driver_data;
  2525. struct cdrom_device_info *devinfo = &info->devinfo;
  2526. if (ide_unregister_subdriver (drive))
  2527. return 1;
  2528. if (info->buffer != NULL)
  2529. kfree(info->buffer);
  2530. if (info->toc != NULL)
  2531. kfree(info->toc);
  2532. if (info->changer_info != NULL)
  2533. kfree(info->changer_info);
  2534. if (devinfo->handle == drive && unregister_cdrom (devinfo))
  2535. printk ("%s: ide_cdrom_cleanup failed to unregister device from the cdrom driver.n", drive->name);
  2536. kfree(info);
  2537. drive->driver_data = NULL;
  2538. return 0;
  2539. }
  2540. static
  2541. int ide_cdrom_reinit (ide_drive_t *drive)
  2542. {
  2543. return 0;
  2544. }
  2545. static ide_driver_t ide_cdrom_driver = {
  2546. name: "ide-cdrom",
  2547. version: IDECD_VERSION,
  2548. media: ide_cdrom,
  2549. busy: 0,
  2550. supports_dma: 1,
  2551. supports_dsc_overlap: 1,
  2552. cleanup: ide_cdrom_cleanup,
  2553. do_request: ide_do_rw_cdrom,
  2554. end_request: NULL,
  2555. ioctl: ide_cdrom_ioctl,
  2556. open: ide_cdrom_open,
  2557. release: ide_cdrom_release,
  2558. media_change: ide_cdrom_check_media_change,
  2559. revalidate: ide_cdrom_revalidate,
  2560. pre_reset: NULL,
  2561. capacity: ide_cdrom_capacity,
  2562. special: NULL,
  2563. proc: NULL,
  2564. driver_reinit: ide_cdrom_reinit,
  2565. };
  2566. int ide_cdrom_init(void);
  2567. static ide_module_t ide_cdrom_module = {
  2568. IDE_DRIVER_MODULE,
  2569. ide_cdrom_init,
  2570. &ide_cdrom_driver,
  2571. NULL
  2572. };
  2573. /* options */
  2574. char *ignore = NULL;
  2575. MODULE_PARM(ignore, "s");
  2576. MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
  2577. static void __exit ide_cdrom_exit(void)
  2578. {
  2579. ide_drive_t *drive;
  2580. int failed = 0;
  2581. while ((drive = ide_scan_devices (ide_cdrom, ide_cdrom_driver.name, &ide_cdrom_driver, failed)) != NULL)
  2582. if (ide_cdrom_cleanup (drive)) {
  2583. printk ("%s: cleanup_module() called while still busyn", drive->name);
  2584. failed++;
  2585. }
  2586. ide_unregister_module (&ide_cdrom_module);
  2587. }
  2588.  
  2589. int ide_cdrom_init(void)
  2590. {
  2591. ide_drive_t *drive;
  2592. struct cdrom_info *info;
  2593. int failed = 0;
  2594. MOD_INC_USE_COUNT;
  2595. while ((drive = ide_scan_devices (ide_cdrom, ide_cdrom_driver.name, NULL, failed++)) != NULL) {
  2596. /* skip drives that we were told to ignore */
  2597. if (ignore != NULL) {
  2598. if (strstr(ignore, drive->name)) {
  2599. printk("ide-cd: ignoring drive %sn", drive->name);
  2600. continue;
  2601. }
  2602. }
  2603. if (drive->scsi) {
  2604. printk("ide-cd: passing drive %s to ide-scsi emulation.n", drive->name);
  2605. continue;
  2606. }
  2607. info = (struct cdrom_info *) kmalloc (sizeof (struct cdrom_info), GFP_KERNEL);
  2608. if (info == NULL) {
  2609. printk ("%s: Can't allocate a cdrom structuren", drive->name);
  2610. continue;
  2611. }
  2612. if (ide_register_subdriver (drive, &ide_cdrom_driver, IDE_SUBDRIVER_VERSION)) {
  2613. printk ("%s: Failed to register the driver with ide.cn", drive->name);
  2614. kfree (info);
  2615. continue;
  2616. }
  2617. memset (info, 0, sizeof (struct cdrom_info));
  2618. drive->driver_data = info;
  2619. DRIVER(drive)->busy++;
  2620. if (ide_cdrom_setup (drive)) {
  2621. DRIVER(drive)->busy--;
  2622. if (ide_cdrom_cleanup (drive))
  2623. printk ("%s: ide_cdrom_cleanup failed in ide_cdrom_initn", drive->name);
  2624. continue;
  2625. }
  2626. DRIVER(drive)->busy--;
  2627. failed--;
  2628. }
  2629. ide_register_module(&ide_cdrom_module);
  2630. MOD_DEC_USE_COUNT;
  2631. return 0;
  2632. }
  2633. module_init(ide_cdrom_init);
  2634. module_exit(ide_cdrom_exit);
  2635. MODULE_LICENSE("GPL");