Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Feb 2003 22:19:38 -0800 (PST)
From:      "Kenneth D. Merry" <ken@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/dev/ata atapi-cam.c src/sys/dev/usb umass.c src/sys/cam/scsi scsi_all.c scsi_all.h scsi_cd.c scsi_cd.h scsi_da.c
Message-ID:  <200302210619.h1L6Jcb8095964@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
ken         2003/02/20 22:19:38 PST

  Modified files:
    sys/dev/ata          atapi-cam.c 
    sys/dev/usb          umass.c 
    sys/cam/scsi         scsi_all.c scsi_all.h scsi_cd.c scsi_cd.h 
                         scsi_da.c 
  Log:
  Fix ATAPI/USB/Firewire CDROM drive handling in cd(4) and hopefully fix
  a number of related problems along the way.
  
   - Automatically detect CDROM drives that can't handle 6 byte mode
     sense and mode select, and adjust our command size accordingly.
     We have to handle this in the cd(4) driver (where the buffers are
     allocated), since the parameter list length is different for the
     6 and 10 byte mode sense commands.
  
   - Remove MODE_SENSE and MODE_SELECT translation removed in ATAPICAM
     and in the umass(4) driver, since there's no way for that to work
     properly.
  
   - Add a quirk entry for CDROM drives that just hang when they get a 6
     byte mode sense or mode select.  The reason for the quirk must be
     documented in a PR, and all quirks must be approved by
     ken@FreeBSD.org.  This is to make sure that we fully understand why
     each quirk is needed.  Once the CAM_NEW_TRAN_CODE is finished, we
     should be able to remove any such quirks, since we'll know what
     protocol the drive speaks (SCSI, ATAPI, etc.) and therefore whether
     we should use 6 or 10 byte mode sense/select commands.
  
   - Change the way the da(4) handles the no_6_byte sysctl.  There is
     now a per-drive sysctl to set the minimum command size for that
     particular disk.  (Since you could have multiple disks with
     multiple requirements in one system.)
  
   - Loader tunable support for all the sysctls in the da(4) and cd(4)
     drivers.
  
   - Add a CDIOCCLOSE ioctl for cd(4) (bde pointed this out a long
     time ago).
  
   - Add a media validation routine (cdcheckmedia()) to the cd(4)
     driver, to fix some problems bde pointed out a long time ago.  We
     now allow open() to succeed no matter what, but if we don't detect
     valid media, the user can only issue CDIOCCLOSE or CDIOCEJECT
     ioctls.
  
   - The media validation routine also reads the table of contents off
     the drive.  We use the table of contents to implement the
     CDIOCPLAYTRACKS ioctl using the PLAY AUDIO MSF command.  The
     PLAY AUDIO TRACK INDEX command that we previously used was
     deprecated after SCSI-2.  It works in every SCSI CDROM I've tried,
     but doesn't seem to work on ATAPI CDROM drives.  We still use the
     play audio track index command if we don't have a valid TOC, but
     I suppose it'll fail anyway in that case.
  
   - Add _len() versions of scsi_mode_sense() and scsi_mode_select() so
     that we can specify the minimum command length.
  
   - Fix a couple of formatting problems in the sense printing code.
  
  MFC after:      4 weeks
  
  Revision  Changes    Path
  1.39      +31 -4     src/sys/cam/scsi/scsi_all.c
  1.22      +17 -0     src/sys/cam/scsi/scsi_all.h
  1.72      +925 -264  src/sys/cam/scsi/scsi_cd.c
  1.7       +54 -31    src/sys/cam/scsi/scsi_cd.h
  1.127     +89 -8     src/sys/cam/scsi/scsi_da.c
  1.13      +0 -30     src/sys/dev/ata/atapi-cam.c
  1.76      +0 -27     src/sys/dev/usb/umass.c

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-src" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302210619.h1L6Jcb8095964>