patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / scsi / sr.h
1 /*
2  *      sr.h by David Giller
3  *      CD-ROM disk driver header file
4  *      
5  *      adapted from:
6  *      sd.h Copyright (C) 1992 Drew Eckhardt 
7  *      SCSI disk driver header file by
8  *              Drew Eckhardt 
9  *
10  *      <drew@colorado.edu>
11  *
12  *       Modified by Eric Youngdale eric@andante.org to
13  *       add scatter-gather, multiple outstanding request, and other
14  *       enhancements.
15  */
16
17 #ifndef _SR_H
18 #define _SR_H
19
20 #include "scsi.h"
21 #include <linux/genhd.h>
22 #include <linux/kref.h>
23
24 /* The CDROM is fairly slow, so we need a little extra time */
25 /* In fact, it is very slow if it has to spin up first */
26 #define IOCTL_TIMEOUT 30*HZ
27
28 typedef struct scsi_cd {
29         struct scsi_driver *driver;
30         unsigned capacity;      /* size in blocks                       */
31         Scsi_Device *device;
32         unsigned int vendor;    /* vendor code, see sr_vendor.c         */
33         unsigned long ms_offset;        /* for reading multisession-CD's        */
34         unsigned needs_sector_size:1;   /* needs to get sector size */
35         unsigned use:1;         /* is this device still supportable     */
36         unsigned xa_flag:1;     /* CD has XA sectors ? */
37         unsigned readcd_known:1;        /* drive supports READ_CD (0xbe) */
38         unsigned readcd_cdda:1; /* reading audio data using READ_CD */
39         struct cdrom_device_info cdi;
40         /* We hold gendisk and scsi_device references on probe and use
41          * the refs on this kref to decide when to release them */
42         struct kref kref;
43         struct gendisk *disk;
44 } Scsi_CD;
45
46 int sr_do_ioctl(Scsi_CD *, struct packet_command *);
47
48 int sr_lock_door(struct cdrom_device_info *, int);
49 int sr_tray_move(struct cdrom_device_info *, int);
50 int sr_drive_status(struct cdrom_device_info *, int);
51 int sr_disk_status(struct cdrom_device_info *);
52 int sr_get_last_session(struct cdrom_device_info *, struct cdrom_multisession *);
53 int sr_get_mcn(struct cdrom_device_info *, struct cdrom_mcn *);
54 int sr_reset(struct cdrom_device_info *);
55 int sr_select_speed(struct cdrom_device_info *cdi, int speed);
56 int sr_audio_ioctl(struct cdrom_device_info *, unsigned int, void *);
57 int sr_dev_ioctl(struct cdrom_device_info *, unsigned int, unsigned long);
58
59 int sr_is_xa(Scsi_CD *);
60
61 /* sr_vendor.c */
62 void sr_vendor_init(Scsi_CD *);
63 int sr_cd_check(struct cdrom_device_info *);
64 int sr_set_blocklength(Scsi_CD *, int blocklength);
65
66 #endif