smartmontools SVN Rev 5611
Utility to control and monitor storage systems with "S.M.A.R.T."
os_linux.h
Go to the documentation of this file.
1/*
2 * os_linux.h
3 *
4 * Home page of code is: http://www.smartmontools.org
5 *
6 * Copyright (C) 2003-8 Bruce Allen
7 *
8 * Derived from code that was
9 *
10 * Written By: Adam Radford <linux@3ware.com>
11 * Modifications By: Joel Jacobson <linux@3ware.com>
12 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
13 * Brad Strand <linux@3ware.com>
14 *
15 * Copyright (C) 1999-2003 3ware Inc.
16 *
17 * Kernel compatibility By: Andre Hedrick <andre@suse.com>
18 * Non-Copyright (C) 2000 Andre Hedrick <andre@suse.com>
19 *
20 * SPDX-License-Identifier: GPL-2.0-or-later
21 */
22
23
24#ifndef OS_LINUX_H_
25#define OS_LINUX_H_
26
27#define OS_LINUX_H_CVSID "$Id: os_linux.h 4842 2018-12-02 16:07:26Z chrfranke $\n"
28
29/*
30 The following definitions/macros/prototypes are used for three
31 different interfaces, referred to as "the three cases" below.
32 CONTROLLER_3WARE_678K -- 6000, 7000, and 8000 controllers via /dev/sd?
33 CONTROLLER_3WARE_678K_CHAR -- 6000, 7000, and 8000 controllers via /dev/twe?
34 CONTROLLER_3WARE_9000_CHAR -- 9000 controllers via /dev/twa?
35*/
36
37// USED FOR ALL THREE CASES
38
39#define u32 unsigned int
40#define TW_OP_ATA_PASSTHRU 0x11
41#define MAX(x,y) ( (x)>(y)?(x):(y) )
42
43#pragma pack(1)
44/* Scatter gather list entry */
45typedef struct TAG_TW_SG_Entry {
46 unsigned int address;
47 unsigned int length;
49
50/* Command header for ATA pass-thru. Note that for different
51 drivers/interfaces the length of sg_list (here TW_ATA_PASS_SGL_MAX)
52 is different. But it can be taken as same for all three cases
53 because it's never used to define any other structures, and we
54 never use anything in the sg_list or beyond! */
55
56#define TW_ATA_PASS_SGL_MAX 60
57
58typedef struct TAG_TW_Passthru {
59 struct {
60 unsigned char opcode:5;
61 unsigned char sgloff:3;
63 unsigned char size;
64 unsigned char request_id;
65 unsigned char unit;
66 unsigned char status; // On return, contains 3ware STATUS register
67 unsigned char flags;
68 unsigned short param;
69 unsigned short features; // On return, contains ATA ERROR register
70 unsigned short sector_count;
71 unsigned short sector_num;
72 unsigned short cylinder_lo;
73 unsigned short cylinder_hi;
74 unsigned char drive_head;
75 unsigned char command; // On return, contains ATA STATUS register
77 unsigned char padding[12];
79
80// the following are for the SCSI interface only
81
82// Ioctl buffer: Note that this defn has changed in kernel tree...
83// Total size is 1041 bytes -- this is really weird
84
85#define TW_IOCTL 0x80
86#define TW_ATA_PASSTHRU 0x1e
87
88// Adam -- should this be #pramga packed? Otherwise table_id gets
89// moved for byte alignment. Without packing, input passthru for SCSI
90// ioctl is 31 bytes in. With packing it is 30 bytes in.
91typedef struct TAG_TW_Ioctl {
94 unsigned char cdb[16];
95 unsigned char opcode;
96 // This one byte of padding is missing from the typedefs in the
97 // kernel code, but it is indeed present. We put it explicitly
98 // here, so that the structure can be packed. Adam agrees with
99 // this.
100 unsigned char packing;
101 unsigned short table_id;
102 unsigned char parameter_id;
103 unsigned char parameter_size_bytes;
104 unsigned char unit_index;
105 // Size up to here is 30 bytes + 1 padding!
106 unsigned char input_data[499];
107 // Reserve lots of extra space for commands that set Sector Count
108 // register to large values
109 unsigned char output_data[512]; // starts 530 bytes in!
110 // two more padding bytes here if structure NOT packed.
112
113/* Ioctl buffer output -- SCSI interface only! */
114typedef struct TAG_TW_Output {
115 int padding[2];
116 char output_data[512];
118
119// What follows is needed for 9000 char interface only
120
121#define TW_IOCTL_FIRMWARE_PASS_THROUGH 0x108
122#define TW_MAX_SGL_LENGTH_9000 61
123
125 unsigned int control_code;
126 unsigned int status;
127 unsigned int unique_id;
128 unsigned int sequence_id;
129 unsigned int os_specific;
130 unsigned int buffer_length;
132
133/* Command Packet */
134typedef struct TW_Command_9000 {
135 /* First DWORD */
136 struct {
137 unsigned char opcode:5;
138 unsigned char sgl_offset:3;
140 unsigned char size;
141 unsigned char request_id;
142 struct {
143 unsigned char unit:4;
144 unsigned char host_id:4;
146 /* Second DWORD */
147 unsigned char status;
148 unsigned char flags;
149 union {
150 unsigned short block_count;
151 unsigned short parameter_count;
152 unsigned short message_credits;
154 union {
155 struct {
159 } io;
160 struct {
162 u32 padding[2];
164 struct {
166 u32 padding[125]; /* pad entire structure to 512 bytes */
168 struct {
169 char version[504];
173
174/* Command Packet for 9000+ controllers */
175typedef struct TAG_TW_Command_Apache {
176 struct {
177 unsigned char opcode:5;
178 unsigned char reserved:3;
180 unsigned char unit;
181 unsigned short request_id;
182 unsigned char sense_length;
183 unsigned char sgl_offset;
184 unsigned short sgl_entries;
185 unsigned char cdb[16];
188
189/* New command packet header */
191 unsigned char sense_data[18];
192 struct {
193 char reserved[4];
194 unsigned short error;
195 unsigned char status;
196 struct {
197 unsigned char severity:3;
198 unsigned char reserved:5;
201 unsigned char err_specific_desc[102];
203
204/* This struct is a union of the 2 command packets */
207 union {
211 unsigned char padding[384]; /* Pad to 1024 bytes */
213
214typedef struct TAG_TW_Ioctl_Apache {
216 char padding[488];
218 char data_buffer[1];
219 // three bytes of padding here if structure not packed!
221
222
223
224// START OF DEFINITIONS FOR THE CHARACTER INTERFACE TO THE
225// 6000/7000/8000 drivers
226
227#define TW_MAX_SGL_LENGTH 62
228#define TW_CMD_PACKET_WITH_DATA 0x1f
229
230/* Command Packet */
231typedef struct TW_Command {
232 /* First DWORD */
233 struct {
234 unsigned char opcode:5;
235 unsigned char sgl_offset:3;
237 unsigned char size;
238 unsigned char request_id;
239 struct {
240 unsigned char unit:4;
241 unsigned char host_id:4;
243 /* Second DWORD */
244 unsigned char status;
245 unsigned char flags;
246 union {
247 unsigned short block_count;
248 unsigned short parameter_count;
249 unsigned short message_credits;
251 union {
252 struct {
255 u32 padding; /* pad to 512 bytes */
256 } io;
257 struct {
259 u32 padding[2];
261 struct {
263 u32 padding[125];
265 struct {
266 char version[504];
270
271typedef struct TAG_TW_New_Ioctl {
272 unsigned int data_buffer_length;
273 unsigned char padding [508];
275 char data_buffer[1];
276 // three bytes of padding here
278#pragma pack()
279
280#if 0
281// Useful for checking/understanding packing of 3ware data structures
282// above.
283void my(int x, char *y){
284 printf("The size of %30s is: %5d\n",y, x);
285 return;
286}
287
288int main() {
289 TW_Ioctl tmp;
290 my(sizeof(TW_SG_Entry),"TW_SG_Entry");
291 my(sizeof(TW_Passthru),"TW_Passthru");
292 my(sizeof(TW_Ioctl),"TW_Ioctl");
293 my(sizeof(TW_Output),"TW_Output");
294 my(sizeof(TW_Ioctl_Driver_Command_9000),"TW_Ioctl_Driver_Command_9000");
295 my(sizeof(TW_Command_9000),"TW_Command_9000");
296 my(sizeof(TW_Command_Apache),"TW_Command_Apache");
297 my(sizeof(TW_Command_Apache_Header),"TW_Command_Apache_Header");
298 my(sizeof(TW_Command_Full_9000),"TW_Command_Full_9000");
299 my(sizeof(TW_Ioctl_Buf_Apache),"TW_Ioctl_Buf_Apache");
300 my(sizeof(TW_Command),"TW_Command");
301 my(sizeof(TW_New_Ioctl),"TW_New_Ioctl");
302 printf("TW_Ioctl.table_id - start = %d (irrelevant)\n",
303 (void *)&tmp.table_id - (void *)&tmp);
304 printf("TW_Ioctl.input_data - start = %d (input passthru location)\n",
305 (void *)&tmp.input_data - (void *)&tmp);
306 printf("TW_Ioctl.output_data - start = %d (irrelevant)\n",
307 (void *)&tmp.output_data - (void *)&tmp);
308 return 0;
309}
310#endif
311
312// The following definitions are from hdreg.h in the kernel source
313// tree. They don't carry any Copyright statements, but I think they
314// are primarily from Mark Lord and Andre Hedrick.
315typedef unsigned char task_ioreg_t;
316
317typedef struct hd_drive_task_hdr {
327
328typedef union ide_reg_valid_s {
329 unsigned all : 16;
330 struct {
331 unsigned data : 1;
332 unsigned error_feature : 1;
333 unsigned sector : 1;
334 unsigned nsector : 1;
335 unsigned lcyl : 1;
336 unsigned hcyl : 1;
337 unsigned select : 1;
338 unsigned status_command : 1;
339 unsigned data_hob : 1;
340 unsigned error_feature_hob : 1;
341 unsigned sector_hob : 1;
342 unsigned nsector_hob : 1;
343 unsigned lcyl_hob : 1;
344 unsigned hcyl_hob : 1;
345 unsigned select_hob : 1;
346 unsigned control_hob : 1;
347 } b;
349
350typedef struct ide_task_request_s {
357 unsigned long out_size;
358 unsigned long in_size;
360
361#define TASKFILE_NO_DATA 0x0000
362#define TASKFILE_IN 0x0001
363#define TASKFILE_OUT 0x0004
364#define HDIO_DRIVE_TASK_HDR_SIZE 8*sizeof(task_ioreg_t)
365#define IDE_DRIVE_TASK_NO_DATA 0
366#define IDE_DRIVE_TASK_IN 2
367#define IDE_DRIVE_TASK_OUT 3
368#define HDIO_DRIVE_CMD 0x031f
369#define HDIO_DRIVE_TASK 0x031e
370#define HDIO_DRIVE_TASKFILE 0x031d
371#define HDIO_GET_IDENTITY 0x030d
372
373#define HPTIO_CTL 0x03ff // ioctl interface for HighPoint raid device
374
375#endif /* OS_LINUX_H_ */
#define u32
Definition: os_linux.h:39
struct TAG_TW_Ioctl_Driver_Command_9000 TW_Ioctl_Driver_Command_9000
struct hd_drive_task_hdr task_struct_t
#define TW_ATA_PASS_SGL_MAX
Definition: os_linux.h:56
struct ide_task_request_s ide_task_request_t
union ide_reg_valid_s ide_reg_valid_t
struct TAG_TW_Passthru TW_Passthru
#define TW_MAX_SGL_LENGTH
Definition: os_linux.h:227
struct TAG_TW_SG_Entry TW_SG_Entry
struct TAG_TW_Ioctl TW_Ioctl
struct TAG_TW_Command_Apache TW_Command_Apache
#define TW_MAX_SGL_LENGTH_9000
Definition: os_linux.h:122
struct TAG_TW_Command_Full_9000 TW_Command_Full_9000
struct TAG_TW_Ioctl_Apache TW_Ioctl_Buf_Apache
struct TAG_TW_Command_Apache_Header TW_Command_Apache_Header
struct TAG_TW_Output TW_Output
struct TAG_TW_New_Ioctl TW_New_Ioctl
unsigned char task_ioreg_t
Definition: os_linux.h:315
int main(int argc, char **argv)
Definition: smartctl.cpp:1685
unsigned char sense_data[18]
Definition: os_linux.h:191
unsigned char err_specific_desc[102]
Definition: os_linux.h:201
struct TAG_TW_Command_Apache_Header::@61::@62 substatus_block
struct TAG_TW_Command_Apache_Header::@61 status_block
unsigned short sgl_entries
Definition: os_linux.h:184
unsigned char cdb[16]
Definition: os_linux.h:185
unsigned char unit
Definition: os_linux.h:180
unsigned char opcode
Definition: os_linux.h:177
unsigned char sense_length
Definition: os_linux.h:182
unsigned char sgl_offset
Definition: os_linux.h:183
TW_SG_Entry sg_list[TW_MAX_SGL_LENGTH_9000]
Definition: os_linux.h:186
unsigned char reserved
Definition: os_linux.h:178
struct TAG_TW_Command_Apache::@60 command
unsigned short request_id
Definition: os_linux.h:181
union TAG_TW_Command_Full_9000::@63 command
TW_Command_Apache newcommand
Definition: os_linux.h:209
TW_Command_Apache_Header header
Definition: os_linux.h:206
unsigned char padding[384]
Definition: os_linux.h:211
TW_Command_9000 oldcommand
Definition: os_linux.h:208
TW_Command_Full_9000 firmware_command
Definition: os_linux.h:217
char data_buffer[1]
Definition: os_linux.h:218
TW_Ioctl_Driver_Command_9000 driver_command
Definition: os_linux.h:215
char padding[488]
Definition: os_linux.h:216
unsigned char input_data[499]
Definition: os_linux.h:106
unsigned char opcode
Definition: os_linux.h:95
int input_length
Definition: os_linux.h:92
unsigned char packing
Definition: os_linux.h:100
unsigned char parameter_size_bytes
Definition: os_linux.h:103
unsigned short table_id
Definition: os_linux.h:101
unsigned char parameter_id
Definition: os_linux.h:102
unsigned char output_data[512]
Definition: os_linux.h:109
unsigned char cdb[16]
Definition: os_linux.h:94
int output_length
Definition: os_linux.h:93
unsigned char unit_index
Definition: os_linux.h:104
unsigned char padding[508]
Definition: os_linux.h:273
unsigned int data_buffer_length
Definition: os_linux.h:272
TW_Command firmware_command
Definition: os_linux.h:274
char data_buffer[1]
Definition: os_linux.h:275
char output_data[512]
Definition: os_linux.h:116
int padding[2]
Definition: os_linux.h:115
unsigned char drive_head
Definition: os_linux.h:74
struct TAG_TW_Passthru::@51 byte0
unsigned char flags
Definition: os_linux.h:67
unsigned char sgloff
Definition: os_linux.h:61
unsigned short cylinder_hi
Definition: os_linux.h:73
unsigned char command
Definition: os_linux.h:75
unsigned short cylinder_lo
Definition: os_linux.h:72
TW_SG_Entry sg_list[TW_ATA_PASS_SGL_MAX]
Definition: os_linux.h:76
unsigned short features
Definition: os_linux.h:69
unsigned char status
Definition: os_linux.h:66
unsigned char opcode
Definition: os_linux.h:60
unsigned char unit
Definition: os_linux.h:65
unsigned short sector_num
Definition: os_linux.h:71
unsigned short sector_count
Definition: os_linux.h:70
unsigned char padding[12]
Definition: os_linux.h:77
unsigned char size
Definition: os_linux.h:63
unsigned short param
Definition: os_linux.h:68
unsigned char request_id
Definition: os_linux.h:64
Definition: os_linux.h:45
unsigned int length
Definition: os_linux.h:47
unsigned int address
Definition: os_linux.h:46
unsigned char host_id
Definition: os_linux.h:144
unsigned char opcode
Definition: os_linux.h:137
unsigned char flags
Definition: os_linux.h:148
TW_SG_Entry sgl[TW_MAX_SGL_LENGTH_9000]
Definition: os_linux.h:157
unsigned char sgl_offset
Definition: os_linux.h:138
struct TW_Command_9000::@52 byte0
unsigned char unit
Definition: os_linux.h:143
union TW_Command_9000::@54 byte6
unsigned short block_count
Definition: os_linux.h:150
unsigned char status
Definition: os_linux.h:147
unsigned short parameter_count
Definition: os_linux.h:151
unsigned short message_credits
Definition: os_linux.h:152
unsigned char request_id
Definition: os_linux.h:141
struct TW_Command_9000::@55::@58 init_connection
char version[504]
Definition: os_linux.h:169
struct TW_Command_9000::@55::@56 io
u32 response_queue_pointer
Definition: os_linux.h:165
struct TW_Command_9000::@55::@57 param
struct TW_Command_9000::@55::@59 ioctl_miniport_version
struct TW_Command_9000::@53 byte3
union TW_Command_9000::@55 byte8
unsigned char size
Definition: os_linux.h:140
unsigned char request_id
Definition: os_linux.h:238
struct TW_Command::@64 byte0
struct TW_Command::@67::@71 ioctl_miniport_version
unsigned short message_credits
Definition: os_linux.h:249
struct TW_Command::@65 byte3
struct TW_Command::@67::@68 io
unsigned char status
Definition: os_linux.h:244
unsigned char unit
Definition: os_linux.h:240
unsigned short parameter_count
Definition: os_linux.h:248
union TW_Command::@66 byte6
unsigned char host_id
Definition: os_linux.h:241
u32 padding
Definition: os_linux.h:255
union TW_Command::@67 byte8
struct TW_Command::@67::@70 init_connection
u32 response_queue_pointer
Definition: os_linux.h:262
struct TW_Command::@67::@69 param
unsigned char size
Definition: os_linux.h:237
unsigned char flags
Definition: os_linux.h:245
unsigned short block_count
Definition: os_linux.h:247
TW_SG_Entry sgl[TW_MAX_SGL_LENGTH]
Definition: os_linux.h:254
char version[504]
Definition: os_linux.h:266
unsigned char sgl_offset
Definition: os_linux.h:235
unsigned char opcode
Definition: os_linux.h:234
task_ioreg_t sector_number
Definition: os_linux.h:321
task_ioreg_t low_cylinder
Definition: os_linux.h:322
task_ioreg_t feature
Definition: os_linux.h:319
task_ioreg_t high_cylinder
Definition: os_linux.h:323
task_ioreg_t data
Definition: os_linux.h:318
task_ioreg_t command
Definition: os_linux.h:325
task_ioreg_t device_head
Definition: os_linux.h:324
task_ioreg_t sector_count
Definition: os_linux.h:320
task_ioreg_t hob_ports[8]
Definition: os_linux.h:352
unsigned long in_size
Definition: os_linux.h:358
task_ioreg_t io_ports[8]
Definition: os_linux.h:351
unsigned long out_size
Definition: os_linux.h:357
ide_reg_valid_t in_flags
Definition: os_linux.h:354
ide_reg_valid_t out_flags
Definition: os_linux.h:353
unsigned all
Definition: os_linux.h:329
struct ide_reg_valid_s::@72 b
unsigned nsector
Definition: os_linux.h:334
unsigned sector
Definition: os_linux.h:333
unsigned lcyl
Definition: os_linux.h:335
unsigned lcyl_hob
Definition: os_linux.h:343
unsigned hcyl
Definition: os_linux.h:336
unsigned error_feature_hob
Definition: os_linux.h:340
unsigned control_hob
Definition: os_linux.h:346
unsigned error_feature
Definition: os_linux.h:332
unsigned hcyl_hob
Definition: os_linux.h:344
unsigned data
Definition: os_linux.h:331
unsigned select
Definition: os_linux.h:337
unsigned status_command
Definition: os_linux.h:338
unsigned select_hob
Definition: os_linux.h:345
unsigned sector_hob
Definition: os_linux.h:341
unsigned nsector_hob
Definition: os_linux.h:342
unsigned data_hob
Definition: os_linux.h:339