diff options
author | njl <njl@FreeBSD.org> | 2002-10-18 22:03:39 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2002-10-18 22:03:39 +0000 |
commit | 181311508173b9c70205bd14450f104550fe7bac (patch) | |
tree | 540c29f87f9954dc980102ee2621565072883c36 /sys/cam/scsi/scsi_cd.h | |
parent | 1bac0e0b4c757dd560b18b70ad1a3a28028cf233 (diff) | |
download | FreeBSD-src-181311508173b9c70205bd14450f104550fe7bac.zip FreeBSD-src-181311508173b9c70205bd14450f104550fe7bac.tar.gz |
* Add CDRIOC{READ,WRITE}SPEED ioctls to cd(4). Units are in KB/sec.
* Change atapi-cd ioctls to use the same units.
* Change burncd, cdcontrol to convert CDROM speed to KB/sec before
calling the ioctl. Add a "max" speed option for their command lines.
This change does not break ABI but does change the units passed through
the ioctl so 3rd party software that uses cdrio.h will have to convert
(most likely by multiplying CDROM speed by 177 to get KB/s).
PR: kern/36845
Submitted by: Philipp Mergenthaler <p@i609a.hadiko.de> (CAM ioctls)
Reviewed by: sos, ken
MFC after: 1 month
Diffstat (limited to 'sys/cam/scsi/scsi_cd.h')
-rw-r--r-- | sys/cam/scsi/scsi_cd.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_cd.h b/sys/cam/scsi/scsi_cd.h index fc52119..f242139 100644 --- a/sys/cam/scsi/scsi_cd.h +++ b/sys/cam/scsi/scsi_cd.h @@ -169,6 +169,16 @@ struct scsi_read_cd_capacity u_int8_t control; }; +struct scsi_set_speed +{ + u_int8_t opcode; + u_int8_t byte2; + u_int8_t readspeed[2]; + u_int8_t writespeed[2]; + u_int8_t reserved[5]; + u_int8_t control; +}; + struct scsi_report_key { u_int8_t opcode; @@ -251,6 +261,7 @@ struct scsi_read_dvd_structure #define PLAY_12 0xa5 /* cdrom pause in 'play audio' mode */ #define PLAY_TRACK_REL_BIG 0xa9 /* cdrom play track/index mode */ #define READ_DVD_STRUCTURE 0xad /* read dvd structure */ +#define SET_CD_SPEED 0xbb /* set c/dvd speed */ struct scsi_report_key_data_header { |