Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Copyright (C) 1996-98 Erik Andersen |
| 4 | * Copyright (C) 1998-2000 Jens Axboe |
| 5 | */ |
| 6 | #ifndef _IDE_CD_H |
| 7 | #define _IDE_CD_H |
| 8 | |
| 9 | #include <linux/cdrom.h> |
| 10 | #include <asm/byteorder.h> |
| 11 | |
Borislav Petkov | 0f38aaa | 2009-01-02 16:12:50 +0100 | [diff] [blame] | 12 | #define IDECD_DEBUG_LOG 0 |
| 13 | |
| 14 | #if IDECD_DEBUG_LOG |
Borislav Petkov | 088b1b8 | 2009-01-02 13:34:47 +0100 | [diff] [blame] | 15 | #define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, ## args) |
Borislav Petkov | 0f38aaa | 2009-01-02 16:12:50 +0100 | [diff] [blame] | 16 | #else |
| 17 | #define ide_debug_log(lvl, fmt, args...) do {} while (0) |
| 18 | #endif |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define ATAPI_WAIT_WRITE_BUSY (10 * HZ) |
| 21 | |
| 22 | /************************************************************************/ |
| 23 | |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 24 | #define SECTORS_PER_FRAME (CD_FRAMESIZE >> SECTOR_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #define SECTOR_BUFFER_SIZE (CD_FRAMESIZE * 32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Bartlomiej Zolnierkiewicz | 455d80a | 2008-02-01 23:09:21 +0100 | [diff] [blame] | 27 | /* Capabilities Page size including 8 bytes of Mode Page Header */ |
| 28 | #define ATAPI_CAPABILITIES_PAGE_SIZE (8 + 20) |
| 29 | #define ATAPI_CAPABILITIES_PAGE_PAD_SIZE 4 |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* Structure of a MSF cdrom address. */ |
| 32 | struct atapi_msf { |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 33 | u8 reserved; |
| 34 | u8 minute; |
| 35 | u8 second; |
| 36 | u8 frame; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | /* Space to hold the disk TOC. */ |
| 40 | #define MAX_TRACKS 99 |
| 41 | struct atapi_toc_header { |
| 42 | unsigned short toc_length; |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 43 | u8 first_track; |
| 44 | u8 last_track; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | struct atapi_toc_entry { |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 48 | u8 reserved1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #if defined(__BIG_ENDIAN_BITFIELD) |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 50 | u8 adr : 4; |
| 51 | u8 control : 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 53 | u8 control : 4; |
| 54 | u8 adr : 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #else |
| 56 | #error "Please fix <asm/byteorder.h>" |
| 57 | #endif |
Bartlomiej Zolnierkiewicz | 9892ec5 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 58 | u8 track; |
| 59 | u8 reserved2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | union { |
| 61 | unsigned lba; |
| 62 | struct atapi_msf msf; |
| 63 | } addr; |
| 64 | }; |
| 65 | |
| 66 | struct atapi_toc { |
| 67 | int last_session_lba; |
| 68 | int xa_flag; |
| 69 | unsigned long capacity; |
| 70 | struct atapi_toc_header hdr; |
| 71 | struct atapi_toc_entry ent[MAX_TRACKS+1]; |
| 72 | /* One extra for the leadout. */ |
| 73 | }; |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* Extra per-device info for cdrom drives. */ |
| 76 | struct cdrom_info { |
Bartlomiej Zolnierkiewicz | 7f3c868 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 77 | ide_drive_t *drive; |
| 78 | struct ide_driver *driver; |
| 79 | struct gendisk *disk; |
Bartlomiej Zolnierkiewicz | 8fed436 | 2009-02-25 20:28:24 +0100 | [diff] [blame] | 80 | struct device dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | /* Buffer for table of contents. NULL if we haven't allocated |
| 83 | a TOC buffer for this device yet. */ |
| 84 | |
| 85 | struct atapi_toc *toc; |
| 86 | |
Bartlomiej Zolnierkiewicz | 2bc4cf2 | 2008-02-01 23:09:22 +0100 | [diff] [blame] | 87 | u8 max_speed; /* Max speed of the drive. */ |
| 88 | u8 current_speed; /* Current speed of the drive. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | /* Per-device info needed by cdrom.c generic driver. */ |
| 91 | struct cdrom_device_info devinfo; |
| 92 | |
| 93 | unsigned long write_timeout; |
| 94 | }; |
| 95 | |
Bartlomiej Zolnierkiewicz | 972560f | 2008-02-01 23:09:23 +0100 | [diff] [blame] | 96 | /* ide-cd_verbose.c */ |
| 97 | void ide_cd_log_error(const char *, struct request *, struct request_sense *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 99 | /* ide-cd.c functions used by ide-cd_ioctl.c */ |
FUJITA Tomonori | 5f82854 | 2008-07-15 21:21:42 +0200 | [diff] [blame] | 100 | int ide_cd_queue_pc(ide_drive_t *, const unsigned char *, int, void *, |
Kees Cook | e7d0748 | 2018-08-02 15:22:13 -0600 | [diff] [blame] | 101 | unsigned *, struct scsi_sense_hdr *, int, req_flags_t); |
Kees Cook | 54f8a7a | 2018-07-31 12:51:46 -0700 | [diff] [blame] | 102 | int ide_cd_read_toc(ide_drive_t *); |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 103 | int ide_cdrom_get_capabilities(ide_drive_t *, u8 *); |
| 104 | void ide_cdrom_update_speed(ide_drive_t *, u8 *); |
Kees Cook | e7d0748 | 2018-08-02 15:22:13 -0600 | [diff] [blame] | 105 | int cdrom_check_status(ide_drive_t *, struct scsi_sense_hdr *); |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 106 | |
| 107 | /* ide-cd_ioctl.c */ |
Borislav Petkov | f9afd18 | 2008-02-01 23:09:29 +0100 | [diff] [blame] | 108 | int ide_cdrom_open_real(struct cdrom_device_info *, int); |
| 109 | void ide_cdrom_release_real(struct cdrom_device_info *); |
| 110 | int ide_cdrom_drive_status(struct cdrom_device_info *, int); |
Tejun Heo | 5b03a1b | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 111 | unsigned int ide_cdrom_check_events_real(struct cdrom_device_info *, |
| 112 | unsigned int clearing, int slot_nr); |
Borislav Petkov | f9afd18 | 2008-02-01 23:09:29 +0100 | [diff] [blame] | 113 | int ide_cdrom_tray_move(struct cdrom_device_info *, int); |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 114 | int ide_cdrom_lock_door(struct cdrom_device_info *, int); |
| 115 | int ide_cdrom_select_speed(struct cdrom_device_info *, int); |
| 116 | int ide_cdrom_get_last_session(struct cdrom_device_info *, |
| 117 | struct cdrom_multisession *); |
| 118 | int ide_cdrom_get_mcn(struct cdrom_device_info *, struct cdrom_mcn *); |
| 119 | int ide_cdrom_reset(struct cdrom_device_info *cdi); |
| 120 | int ide_cdrom_audio_ioctl(struct cdrom_device_info *, unsigned int, void *); |
Borislav Petkov | f9afd18 | 2008-02-01 23:09:29 +0100 | [diff] [blame] | 121 | int ide_cdrom_packet(struct cdrom_device_info *, struct packet_command *); |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #endif /* _IDE_CD_H */ |