1.\" Copyright (c) 1997 2.\" John-Mark Gurney. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. Neither the name of the author nor the names of any co-contributors 13.\" may be used to endorse or promote products derived from this software 14.\" without specific prior written permission. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY John-Mark Gurney AND CONTRIBUTORS ``AS IS'' AND 17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.\" 29.Dd February 1, 1997 30.Dt CD 4 31.Os FreeBSD 32.Sh NAME 33.Nm cd 34.Nd device driver for SCSI subsystem 35.Sh DESCRIPTION 36The 37.Nm 38device driver provides the 39.Tn SCSI 40subsystem a way to handle type 5 41.Pq Dv T_READONLY 42media. Some drives don't behave as the driver expects. See the section 43QUIRKS for info on possible flags. 44.Sh QUIRKS 45Each 46.Tn CD-ROM 47device can have different interpretations of the 48.Tn SCSI 49spec. This can lead to drives requiring special handling in the driver. The 50following is a list of quirks that the driver recognize. See 51.Xr scsiconf 9 52for more information on how to add quirk entries. 53.Bl -tag -width CD_Q_BCD_TRACKS 54.It Dv CD_Q_NO_TOUCH 55This flag tell the driver not to probe the drive at attach time to see if 56there is a disk in the drive and find out what size it is. 57.ig xx 58.It Dv CD_Q_BCD_TRACKS 59This flag is for broken drives that return the track numbers in packed BCD 60encoding instead of straight decimal. If the drive seems to skip tracks 61.Pq usually tracks 10-15 are skipped 62then you have a drive that is in need of this flag. 63.xx 64.El 65.Sh FILES 66.Bl -tag -width /sys/scsi/scsiconf.h -compact 67.It Pa /sys/scsi/cd.c 68files contains actual driver code 69.It Pa /sys/scsi/scsiconf.h 70contains the defines of the 71.Dv CD_Q_xxx 72quirk flags 73.El 74.Sh SEE ALSO 75.Xr cd 4 , 76.Xr scsiconf 9 77.Sh HISTORY 78The 79.Nm 80manual page first appeared in 81.Fx 3.0 . 82.Sh AUTHOR 83This 84manual page was written by John-Mark Gurney 85.Aq gurney_j@efn.org . 86