scsicmd.h 4.93 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2008  Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef	GRUB_SCSICMD_H
#define	GRUB_SCSICMD_H	1

#include <grub/types.h>

#define GRUB_SCSI_DEVTYPE_MASK	31
#define GRUB_SCSI_REMOVABLE_BIT	7
#define GRUB_SCSI_LUN_SHIFT	5

28
struct grub_scsi_test_unit_ready
29 30
{
  grub_uint8_t opcode;
31 32
  grub_uint8_t lun; /* 7-5 LUN, 4-0 reserved */
  grub_uint8_t reserved1;
33
  grub_uint8_t reserved2;
34 35 36
  grub_uint8_t reserved3;
  grub_uint8_t control;
  grub_uint8_t pad[6]; /* To be ATAPI compatible */
37
} GRUB_PACKED;
38 39 40 41 42 43 44 45 46 47

struct grub_scsi_inquiry
{
  grub_uint8_t opcode;
  grub_uint8_t lun; /* 7-5 LUN, 4-1 reserved, 0 EVPD */
  grub_uint8_t page; /* page code if EVPD=1 */
  grub_uint8_t reserved;
  grub_uint8_t alloc_length;
  grub_uint8_t control;
  grub_uint8_t pad[6]; /* To be ATAPI compatible */
48
} GRUB_PACKED;
49 50 51 52 53 54 55 56 57 58 59

struct grub_scsi_inquiry_data
{
  grub_uint8_t devtype;
  grub_uint8_t rmb;
  grub_uint16_t reserved;
  grub_uint8_t length;
  grub_uint8_t reserved2[3];
  char vendor[8];
  char prodid[16];
  char prodrev[4];
60
} GRUB_PACKED;
61

62 63 64 65 66 67 68 69 70
struct grub_scsi_request_sense
{
  grub_uint8_t opcode;
  grub_uint8_t lun; /* 7-5 LUN, 4-0 reserved */
  grub_uint8_t reserved1;
  grub_uint8_t reserved2;
  grub_uint8_t alloc_length;
  grub_uint8_t control;
  grub_uint8_t pad[6]; /* To be ATAPI compatible */
71
} GRUB_PACKED;
72 73 74 75 76 77 78 79 80 81 82 83 84 85

struct grub_scsi_request_sense_data
{
  grub_uint8_t error_code; /* 7 Valid, 6-0 Err. code */
  grub_uint8_t segment_number;
  grub_uint8_t sense_key; /*7 FileMark, 6 EndOfMedia, 5 ILI, 4-0 sense key */
  grub_uint32_t information;
  grub_uint8_t additional_sense_length;
  grub_uint32_t cmd_specific_info;
  grub_uint8_t additional_sense_code;
  grub_uint8_t additional_sense_code_qualifier;
  grub_uint8_t field_replaceable_unit_code;
  grub_uint8_t sense_key_specific[3];
  /* there can be additional sense field */
86
} GRUB_PACKED;
87

88
struct grub_scsi_read_capacity10
89 90
{
  grub_uint8_t opcode;
91 92 93 94 95 96 97
  grub_uint8_t lun; /* 7-5 LUN, 4-1 reserved, 0 reserved */
  grub_uint32_t logical_block_addr; /* only if PMI=1 */
  grub_uint8_t reserved1;
  grub_uint8_t reserved2;
  grub_uint8_t PMI;
  grub_uint8_t control;
  grub_uint16_t pad; /* To be ATAPI compatible */
98
} GRUB_PACKED;
99

100
struct grub_scsi_read_capacity10_data
101
{
102 103
  grub_uint32_t last_block;
  grub_uint32_t blocksize;
104
} GRUB_PACKED;
105 106 107 108 109 110 111 112 113

struct grub_scsi_read_capacity16
{
  grub_uint8_t opcode;
  grub_uint8_t lun; /* 7-5 LUN, 4-0 0x10 */
  grub_uint64_t logical_block_addr; /* only if PMI=1 */
  grub_uint32_t alloc_len;
  grub_uint8_t PMI;
  grub_uint8_t control;
114
} GRUB_PACKED;
115 116 117 118

struct grub_scsi_read_capacity16_data
{
  grub_uint64_t last_block;
119
  grub_uint32_t blocksize;
120
  grub_uint8_t pad[20];
121
} GRUB_PACKED;
122 123 124 125 126 127 128 129 130 131

struct grub_scsi_read10
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint32_t lba;
  grub_uint8_t reserved;
  grub_uint16_t size;
  grub_uint8_t reserved2;
  grub_uint16_t pad;
132
} GRUB_PACKED;
133 134 135 136 137 138 139 140 141

struct grub_scsi_read12
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint32_t lba;
  grub_uint32_t size;
  grub_uint8_t reserved;
  grub_uint8_t control;
142
} GRUB_PACKED;
143

144 145 146 147 148 149 150 151
struct grub_scsi_read16
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint64_t lba;
  grub_uint32_t size;
  grub_uint8_t reserved;
  grub_uint8_t control;
152
} GRUB_PACKED;
153

154 155 156 157 158 159 160 161 162
struct grub_scsi_write10
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint32_t lba;
  grub_uint8_t reserved;
  grub_uint16_t size;
  grub_uint8_t reserved2;
  grub_uint16_t pad;
163
} GRUB_PACKED;
164 165 166 167 168 169 170 171 172

struct grub_scsi_write12
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint32_t lba;
  grub_uint32_t size;
  grub_uint8_t reserved;
  grub_uint8_t control;
173
} GRUB_PACKED;
174

175 176 177 178 179 180 181 182
struct grub_scsi_write16
{
  grub_uint8_t opcode;
  grub_uint8_t lun;
  grub_uint64_t lba;
  grub_uint32_t size;
  grub_uint8_t reserved;
  grub_uint8_t control;
183
} GRUB_PACKED;
184

185 186
typedef enum
  {
187
    grub_scsi_cmd_test_unit_ready = 0x00,
188 189
    grub_scsi_cmd_request_sense = 0x03,
    grub_scsi_cmd_inquiry = 0x12,
190
    grub_scsi_cmd_read_capacity10 = 0x25,
191 192
    grub_scsi_cmd_read10 = 0x28,
    grub_scsi_cmd_write10 = 0x2a,
193 194
    grub_scsi_cmd_read16 = 0x88,
    grub_scsi_cmd_write16 = 0x8a,
195
    grub_scsi_cmd_read_capacity16 = 0x9e,
196
    grub_scsi_cmd_read12 = 0xa8,
197
    grub_scsi_cmd_write12 = 0xaa,
198 199 200 201 202 203 204 205 206
  } grub_scsi_cmd_t;

typedef enum
  {
    grub_scsi_devtype_direct = 0x00,
    grub_scsi_devtype_cdrom = 0x05
  } grub_scsi_devtype_t;

#endif /* GRUB_SCSICMD_H */