blob: 1d97101099ce20bab8e0b319f6da278a09bd9afa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1996-98 Erik Andersen
3 * Copyright (C) 1998-2000 Jens Axboe
4 */
5#ifndef _IDE_CD_H
6#define _IDE_CD_H
7
8#include <linux/cdrom.h>
9#include <asm/byteorder.h>
10
Borislav Petkov0f38aaa2009-01-02 16:12:50 +010011#define IDECD_DEBUG_LOG 0
12
13#if IDECD_DEBUG_LOG
Borislav Petkov088b1b82009-01-02 13:34:47 +010014#define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, ## args)
Borislav Petkov0f38aaa2009-01-02 16:12:50 +010015#else
16#define ide_debug_log(lvl, fmt, args...) do {} while (0)
17#endif
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define ATAPI_WAIT_WRITE_BUSY (10 * HZ)
20
21/************************************************************************/
22
23#define SECTOR_BITS 9
24#ifndef SECTOR_SIZE
25#define SECTOR_SIZE (1 << SECTOR_BITS)
26#endif
27#define SECTORS_PER_FRAME (CD_FRAMESIZE >> SECTOR_BITS)
28#define SECTOR_BUFFER_SIZE (CD_FRAMESIZE * 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Bartlomiej Zolnierkiewicz455d80a2008-02-01 23:09:21 +010030/* Capabilities Page size including 8 bytes of Mode Page Header */
31#define ATAPI_CAPABILITIES_PAGE_SIZE (8 + 20)
32#define ATAPI_CAPABILITIES_PAGE_PAD_SIZE 4
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* Structure of a MSF cdrom address. */
35struct atapi_msf {
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010036 u8 reserved;
37 u8 minute;
38 u8 second;
39 u8 frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42/* Space to hold the disk TOC. */
43#define MAX_TRACKS 99
44struct atapi_toc_header {
45 unsigned short toc_length;
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010046 u8 first_track;
47 u8 last_track;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50struct atapi_toc_entry {
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010051 u8 reserved1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#if defined(__BIG_ENDIAN_BITFIELD)
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010053 u8 adr : 4;
54 u8 control : 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#elif defined(__LITTLE_ENDIAN_BITFIELD)
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010056 u8 control : 4;
57 u8 adr : 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
59#error "Please fix <asm/byteorder.h>"
60#endif
Bartlomiej Zolnierkiewicz9892ec52009-01-06 17:20:53 +010061 u8 track;
62 u8 reserved2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 union {
64 unsigned lba;
65 struct atapi_msf msf;
66 } addr;
67};
68
69struct atapi_toc {
70 int last_session_lba;
71 int xa_flag;
72 unsigned long capacity;
73 struct atapi_toc_header hdr;
74 struct atapi_toc_entry ent[MAX_TRACKS+1];
75 /* One extra for the leadout. */
76};
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* Extra per-device info for cdrom drives. */
79struct cdrom_info {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +010080 ide_drive_t *drive;
81 struct ide_driver *driver;
82 struct gendisk *disk;
Bartlomiej Zolnierkiewicz8fed4362009-02-25 20:28:24 +010083 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 /* Buffer for table of contents. NULL if we haven't allocated
86 a TOC buffer for this device yet. */
87
88 struct atapi_toc *toc;
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* The result of the last successful request sense command
91 on this device. */
92 struct request_sense sense_data;
93
Bartlomiej Zolnierkiewicz2bc4cf22008-02-01 23:09:22 +010094 u8 max_speed; /* Max speed of the drive. */
95 u8 current_speed; /* Current speed of the drive. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 /* Per-device info needed by cdrom.c generic driver. */
98 struct cdrom_device_info devinfo;
99
100 unsigned long write_timeout;
101};
102
Bartlomiej Zolnierkiewicz972560f2008-02-01 23:09:23 +0100103/* ide-cd_verbose.c */
104void ide_cd_log_error(const char *, struct request *, struct request_sense *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100106/* ide-cd.c functions used by ide-cd_ioctl.c */
FUJITA Tomonori5f828542008-07-15 21:21:42 +0200107int ide_cd_queue_pc(ide_drive_t *, const unsigned char *, int, void *,
108 unsigned *, struct request_sense *, int, unsigned int);
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100109int ide_cd_read_toc(ide_drive_t *, struct request_sense *);
110int ide_cdrom_get_capabilities(ide_drive_t *, u8 *);
111void ide_cdrom_update_speed(ide_drive_t *, u8 *);
Borislav Petkovf9afd182008-02-01 23:09:29 +0100112int cdrom_check_status(ide_drive_t *, struct request_sense *);
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100113
114/* ide-cd_ioctl.c */
Borislav Petkovf9afd182008-02-01 23:09:29 +0100115int ide_cdrom_open_real(struct cdrom_device_info *, int);
116void ide_cdrom_release_real(struct cdrom_device_info *);
117int ide_cdrom_drive_status(struct cdrom_device_info *, int);
118int ide_cdrom_check_media_change_real(struct cdrom_device_info *, int);
119int ide_cdrom_tray_move(struct cdrom_device_info *, int);
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100120int ide_cdrom_lock_door(struct cdrom_device_info *, int);
121int ide_cdrom_select_speed(struct cdrom_device_info *, int);
122int ide_cdrom_get_last_session(struct cdrom_device_info *,
123 struct cdrom_multisession *);
124int ide_cdrom_get_mcn(struct cdrom_device_info *, struct cdrom_mcn *);
125int ide_cdrom_reset(struct cdrom_device_info *cdi);
126int ide_cdrom_audio_ioctl(struct cdrom_device_info *, unsigned int, void *);
Borislav Petkovf9afd182008-02-01 23:09:29 +0100127int ide_cdrom_packet(struct cdrom_device_info *, struct packet_command *);
Bartlomiej Zolnierkiewicz17802992008-02-01 23:09:25 +0100128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif /* _IDE_CD_H */