2 * Copyright (C) 1996-98 Erik Andersen
3 * Copyright (C) 1998-2000 Jens Axboe
8 #include <linux/cdrom.h>
9 #include <asm/byteorder.h>
11 #define IDECD_DEBUG_LOG 0
14 #define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, ## args)
16 #define ide_debug_log(lvl, fmt, args...) do {} while (0)
19 #define ATAPI_WAIT_WRITE_BUSY (10 * HZ)
21 /************************************************************************/
23 #define SECTORS_PER_FRAME (CD_FRAMESIZE >> SECTOR_SHIFT)
24 #define SECTOR_BUFFER_SIZE (CD_FRAMESIZE * 32)
26 /* Capabilities Page size including 8 bytes of Mode Page Header */
27 #define ATAPI_CAPABILITIES_PAGE_SIZE (8 + 20)
28 #define ATAPI_CAPABILITIES_PAGE_PAD_SIZE 4
30 /* Structure of a MSF cdrom address. */
38 /* Space to hold the disk TOC. */
40 struct atapi_toc_header
{
41 unsigned short toc_length
;
46 struct atapi_toc_entry
{
48 #if defined(__BIG_ENDIAN_BITFIELD)
51 #elif defined(__LITTLE_ENDIAN_BITFIELD)
55 #error "Please fix <asm/byteorder.h>"
68 unsigned long capacity
;
69 struct atapi_toc_header hdr
;
70 struct atapi_toc_entry ent
[MAX_TRACKS
+1];
71 /* One extra for the leadout. */
74 /* Extra per-device info for cdrom drives. */
77 struct ide_driver
*driver
;
81 /* Buffer for table of contents. NULL if we haven't allocated
82 a TOC buffer for this device yet. */
84 struct atapi_toc
*toc
;
86 u8 max_speed
; /* Max speed of the drive. */
87 u8 current_speed
; /* Current speed of the drive. */
89 /* Per-device info needed by cdrom.c generic driver. */
90 struct cdrom_device_info devinfo
;
92 unsigned long write_timeout
;
95 /* ide-cd_verbose.c */
96 void ide_cd_log_error(const char *, struct request
*, struct request_sense
*);
98 /* ide-cd.c functions used by ide-cd_ioctl.c */
99 int ide_cd_queue_pc(ide_drive_t
*, const unsigned char *, int, void *,
100 unsigned *, struct request_sense
*, int, unsigned int);
101 int ide_cd_read_toc(ide_drive_t
*, struct request_sense
*);
102 int ide_cdrom_get_capabilities(ide_drive_t
*, u8
*);
103 void ide_cdrom_update_speed(ide_drive_t
*, u8
*);
104 int cdrom_check_status(ide_drive_t
*, struct request_sense
*);
107 int ide_cdrom_open_real(struct cdrom_device_info
*, int);
108 void ide_cdrom_release_real(struct cdrom_device_info
*);
109 int ide_cdrom_drive_status(struct cdrom_device_info
*, int);
110 unsigned int ide_cdrom_check_events_real(struct cdrom_device_info
*,
111 unsigned int clearing
, int slot_nr
);
112 int ide_cdrom_tray_move(struct cdrom_device_info
*, int);
113 int ide_cdrom_lock_door(struct cdrom_device_info
*, int);
114 int ide_cdrom_select_speed(struct cdrom_device_info
*, int);
115 int ide_cdrom_get_last_session(struct cdrom_device_info
*,
116 struct cdrom_multisession
*);
117 int ide_cdrom_get_mcn(struct cdrom_device_info
*, struct cdrom_mcn
*);
118 int ide_cdrom_reset(struct cdrom_device_info
*cdi
);
119 int ide_cdrom_audio_ioctl(struct cdrom_device_info
*, unsigned int, void *);
120 int ide_cdrom_packet(struct cdrom_device_info
*, struct packet_command
*);
122 #endif /* _IDE_CD_H */