OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [scsi/] [scsi.h] - Blame information for rev 1774

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1275 phoenix
#ifndef _LINUX_SCSI_H
2
#define _LINUX_SCSI_H
3
 
4
/*
5
 * This header file contains public constants and structures used by
6
 * the scsi code for linux.
7
 */
8
 
9
/*
10
    $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/linux/linux-2.4/include/scsi/scsi.h,v 1.1.1.1 2004-04-15 02:34:58 phoenix Exp $
11
 
12
    For documentation on the OPCODES, MESSAGES, and SENSE values,
13
    please consult the SCSI standard.
14
 
15
*/
16
 
17
/*
18
 *      SCSI opcodes
19
 */
20
 
21
#define TEST_UNIT_READY       0x00
22
#define REZERO_UNIT           0x01
23
#define REQUEST_SENSE         0x03
24
#define FORMAT_UNIT           0x04
25
#define READ_BLOCK_LIMITS     0x05
26
#define REASSIGN_BLOCKS       0x07
27
#define READ_6                0x08
28
#define WRITE_6               0x0a
29
#define SEEK_6                0x0b
30
#define READ_REVERSE          0x0f
31
#define WRITE_FILEMARKS       0x10
32
#define SPACE                 0x11
33
#define INQUIRY               0x12
34
#define RECOVER_BUFFERED_DATA 0x14
35
#define MODE_SELECT           0x15
36
#define RESERVE               0x16
37
#define RELEASE               0x17
38
#define COPY                  0x18
39
#define ERASE                 0x19
40
#define MODE_SENSE            0x1a
41
#define START_STOP            0x1b
42
#define RECEIVE_DIAGNOSTIC    0x1c
43
#define SEND_DIAGNOSTIC       0x1d
44
#define ALLOW_MEDIUM_REMOVAL  0x1e
45
 
46
#define SET_WINDOW            0x24
47
#define READ_CAPACITY         0x25
48
#define READ_10               0x28
49
#define WRITE_10              0x2a
50
#define SEEK_10               0x2b
51
#define WRITE_VERIFY          0x2e
52
#define VERIFY                0x2f
53
#define SEARCH_HIGH           0x30
54
#define SEARCH_EQUAL          0x31
55
#define SEARCH_LOW            0x32
56
#define SET_LIMITS            0x33
57
#define PRE_FETCH             0x34
58
#define READ_POSITION         0x34
59
#define SYNCHRONIZE_CACHE     0x35
60
#define LOCK_UNLOCK_CACHE     0x36
61
#define READ_DEFECT_DATA      0x37
62
#define MEDIUM_SCAN           0x38
63
#define COMPARE               0x39
64
#define COPY_VERIFY           0x3a
65
#define WRITE_BUFFER          0x3b
66
#define READ_BUFFER           0x3c
67
#define UPDATE_BLOCK          0x3d
68
#define READ_LONG             0x3e
69
#define WRITE_LONG            0x3f
70
#define CHANGE_DEFINITION     0x40
71
#define WRITE_SAME            0x41
72
#define READ_TOC              0x43
73
#define LOG_SELECT            0x4c
74
#define LOG_SENSE             0x4d
75
#define MODE_SELECT_10        0x55
76
#define RESERVE_10            0x56
77
#define RELEASE_10            0x57
78
#define MODE_SENSE_10         0x5a
79
#define PERSISTENT_RESERVE_IN 0x5e
80
#define PERSISTENT_RESERVE_OUT 0x5f
81
#define REPORT_LUNS           0xa0
82
#define MOVE_MEDIUM           0xa5
83
#define READ_12               0xa8
84
#define WRITE_12              0xaa
85
#define WRITE_VERIFY_12       0xae
86
#define SEARCH_HIGH_12        0xb0
87
#define SEARCH_EQUAL_12       0xb1
88
#define SEARCH_LOW_12         0xb2
89
#define READ_ELEMENT_STATUS   0xb8
90
#define SEND_VOLUME_TAG       0xb6
91
#define WRITE_LONG_2          0xea
92
#define READ_16               0x88
93
#define WRITE_16              0x8a
94
#define SERVICE_ACTION_IN     0x9e
95
/* values for service action in */
96
#define SAI_READ_CAPACITY_16  0x10
97
 
98
#define SCSI_RETRY_10(c) ((c) == READ_6 || (c) == WRITE_6 || (c) == SEEK_6)
99
 
100
/*
101
 *  SCSI Architecture Model (SAM) Status codes. Taken from SAM-3 draft
102
 *  T10/1561-D Revision 4 Draft dated 7th November 2002.
103
 */
104
#define SAM_STAT_GOOD            0x00
105
#define SAM_STAT_CHECK_CONDITION 0x02
106
#define SAM_STAT_CONDITION_MET   0x04
107
#define SAM_STAT_BUSY            0x08
108
#define SAM_STAT_INTERMEDIATE    0x10
109
#define SAM_STAT_INTERMEDIATE_CONDITION_MET 0x14
110
#define SAM_STAT_RESERVATION_CONFLICT 0x18
111
#define SAM_STAT_COMMAND_TERMINATED 0x22        /* obsolete in SAM-3 */
112
#define SAM_STAT_TASK_SET_FULL   0x28
113
#define SAM_STAT_ACA_ACTIVE      0x30
114
#define SAM_STAT_TASK_ABORTED    0x40
115
 
116
/*
117
 *  Status codes
118
 */
119
 
120
#define GOOD                 0x00
121
#define CHECK_CONDITION      0x01
122
#define CONDITION_GOOD       0x02
123
#define BUSY                 0x04
124
#define INTERMEDIATE_GOOD    0x08
125
#define INTERMEDIATE_C_GOOD  0x0a
126
#define RESERVATION_CONFLICT 0x0c
127
#define COMMAND_TERMINATED   0x11
128
#define QUEUE_FULL           0x14
129
 
130
#define STATUS_MASK          0x3e
131
 
132
/*
133
 *  SENSE KEYS
134
 */
135
 
136
#define NO_SENSE            0x00
137
#define RECOVERED_ERROR     0x01
138
#define NOT_READY           0x02
139
#define MEDIUM_ERROR        0x03
140
#define HARDWARE_ERROR      0x04
141
#define ILLEGAL_REQUEST     0x05
142
#define UNIT_ATTENTION      0x06
143
#define DATA_PROTECT        0x07
144
#define BLANK_CHECK         0x08
145
#define COPY_ABORTED        0x0a
146
#define ABORTED_COMMAND     0x0b
147
#define VOLUME_OVERFLOW     0x0d
148
#define MISCOMPARE          0x0e
149
 
150
 
151
/*
152
 *  DEVICE TYPES
153
 */
154
 
155
#define TYPE_DISK           0x00
156
#define TYPE_TAPE           0x01
157
#define TYPE_PRINTER        0x02
158
#define TYPE_PROCESSOR      0x03    /* HP scanners use this */
159
#define TYPE_WORM           0x04    /* Treated as ROM by our system */
160
#define TYPE_ROM            0x05
161
#define TYPE_SCANNER        0x06
162
#define TYPE_MOD            0x07    /* Magneto-optical disk - 
163
                                     * - treated as TYPE_DISK */
164
#define TYPE_MEDIUM_CHANGER 0x08
165
#define TYPE_COMM           0x09    /* Communications device */
166
#define TYPE_ENCLOSURE      0x0d    /* Enclosure Services Device */
167
#define TYPE_NO_LUN         0x7f
168
 
169
/*
170
 * standard mode-select header prepended to all mode-select commands
171
 *
172
 * moved here from cdrom.h -- kraxel
173
 */
174
 
175
struct ccs_modesel_head
176
{
177
    u_char  _r1;    /* reserved */
178
    u_char  medium; /* device-specific medium type */
179
    u_char  _r2;    /* reserved */
180
    u_char  block_desc_length; /* block descriptor length */
181
    u_char  density; /* device-specific density code */
182
    u_char  number_blocks_hi; /* number of blocks in this block desc */
183
    u_char  number_blocks_med;
184
    u_char  number_blocks_lo;
185
    u_char  _r3;
186
    u_char  block_length_hi; /* block length for blocks in this desc */
187
    u_char  block_length_med;
188
    u_char  block_length_lo;
189
};
190
 
191
/*
192
 *  MESSAGE CODES
193
 */
194
 
195
#define COMMAND_COMPLETE    0x00
196
#define EXTENDED_MESSAGE    0x01
197
#define     EXTENDED_MODIFY_DATA_POINTER    0x00
198
#define     EXTENDED_SDTR                   0x01
199
#define     EXTENDED_EXTENDED_IDENTIFY      0x02    /* SCSI-I only */
200
#define     EXTENDED_WDTR                   0x03
201
#define SAVE_POINTERS       0x02
202
#define RESTORE_POINTERS    0x03
203
#define DISCONNECT          0x04
204
#define INITIATOR_ERROR     0x05
205
#define ABORT               0x06
206
#define MESSAGE_REJECT      0x07
207
#define NOP                 0x08
208
#define MSG_PARITY_ERROR    0x09
209
#define LINKED_CMD_COMPLETE 0x0a
210
#define LINKED_FLG_CMD_COMPLETE 0x0b
211
#define BUS_DEVICE_RESET    0x0c
212
 
213
#define INITIATE_RECOVERY   0x0f            /* SCSI-II only */
214
#define RELEASE_RECOVERY    0x10            /* SCSI-II only */
215
 
216
#define SIMPLE_QUEUE_TAG    0x20
217
#define HEAD_OF_QUEUE_TAG   0x21
218
#define ORDERED_QUEUE_TAG   0x22
219
 
220
/*
221
 * Here are some scsi specific ioctl commands which are sometimes useful.
222
 */
223
/* These are a few other constants  only used by scsi  devices */
224
/* Note that include/linux/cdrom.h also defines IOCTL 0x5300 - 0x5395 */
225
 
226
#define SCSI_IOCTL_GET_IDLUN 0x5382     /* conflicts with CDROMAUDIOBUFSIZ */
227
 
228
/* Used to turn on and off tagged queuing for scsi devices */
229
 
230
#define SCSI_IOCTL_TAGGED_ENABLE 0x5383
231
#define SCSI_IOCTL_TAGGED_DISABLE 0x5384
232
 
233
/* Used to obtain the host number of a device. */
234
#define SCSI_IOCTL_PROBE_HOST 0x5385
235
 
236
/* Used to get the bus number for a device */
237
#define SCSI_IOCTL_GET_BUS_NUMBER 0x5386
238
 
239
/* Used to get the PCI location of a device */
240
#define SCSI_IOCTL_GET_PCI 0x5387
241
 
242
/*
243
 * Overrides for Emacs so that we follow Linus's tabbing style.
244
 * Emacs will notice this stuff at the end of the file and automatically
245
 * adjust the settings for this buffer only.  This must remain at the end
246
 * of the file.
247
 * ---------------------------------------------------------------------------
248
 * Local variables:
249
 * c-indent-level: 4
250
 * c-brace-imaginary-offset: 0
251
 * c-brace-offset: -4
252
 * c-argdecl-indent: 4
253
 * c-label-offset: -4
254
 * c-continued-statement-offset: 4
255
 * c-continued-brace-offset: 0
256
 * indent-tabs-mode: nil
257
 * tab-width: 8
258
 * End:
259
 */
260
 
261
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.