]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - atacmds.h
Correct maintscript syntax
[mirror_smartmontools-debian.git] / atacmds.h
CommitLineData
832b75ed
GG
1/*
2 * atacmds.h
3 *
4 * Home page of code is: http://smartmontools.sourceforge.net
5 *
a7e8ffec 6 * Copyright (C) 2002-11 Bruce Allen <smartmontools-support@lists.sourceforge.net>
1d06b804 7 * Copyright (C) 2008-14 Christian Franke <smartmontools-support@lists.sourceforge.net>
832b75ed
GG
8 * Copyright (C) 1999-2000 Michael Cornwell <cornwell@acm.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
15 * You should have received a copy of the GNU General Public License
ee38a438 16 * (for example COPYING); If not, see <http://www.gnu.org/licenses/>.
832b75ed
GG
17 *
18 * This code was originally developed as a Senior Thesis by Michael Cornwell
19 * at the Concurrent Systems Laboratory (now part of the Storage Systems
20 * Research Center), Jack Baskin School of Engineering, University of
21 * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
22 *
23 */
24
25#ifndef ATACMDS_H_
26#define ATACMDS_H_
27
1d06b804 28#define ATACMDS_H_CVSID "$Id: atacmds.h 3998 2014-10-06 15:20:25Z chrfranke $"
2127e193
GI
29
30#include "dev_interface.h" // ata_device
832b75ed
GG
31
32// Macro to check expected size of struct at compile time using a
33// dummy typedef. On size mismatch, compiler reports a negative array
34// size. If you see an error message of this form, it means that the
35// #pragma pack(1) pragma below is not having the desired effect on
36// your compiler.
37#define ASSERT_SIZEOF_STRUCT(s, n) \
38 typedef char assert_sizeof_struct_##s[(sizeof(struct s) == (n)) ? 1 : -1]
39
40// Add __attribute__((packed)) if compiler supports it
41// because some gcc versions (at least ARM) lack support of #pragma pack()
42#ifdef HAVE_ATTR_PACKED
43#define ATTR_PACKED __attribute__((packed))
44#else
45#define ATTR_PACKED
46#endif
47
48typedef enum {
49 // returns no data, just succeeds or fails
50 ENABLE,
51 DISABLE,
52 AUTOSAVE,
53 IMMEDIATE_OFFLINE,
54 AUTO_OFFLINE,
55 STATUS, // just says if SMART is working or not
56 STATUS_CHECK, // says if disk's SMART status is healthy, or failing
57 // return 512 bytes of data:
58 READ_VALUES,
59 READ_THRESHOLDS,
60 READ_LOG,
61 IDENTIFY,
62 PIDENTIFY,
63 // returns 1 byte of data
64 CHECK_POWER_MODE,
65 // writes 512 bytes of data:
66 WRITE_LOG
67} smart_command_set;
68
2127e193 69
832b75ed 70// ATA Specification Command Register Values (Commands)
d008864d 71#define ATA_CHECK_POWER_MODE 0xe5
2127e193 72#define ATA_IDENTIFY_DEVICE 0xec
832b75ed 73#define ATA_IDENTIFY_PACKET_DEVICE 0xa1
d008864d 74#define ATA_IDLE 0xe3
832b75ed 75#define ATA_SMART_CMD 0xb0
d008864d
GI
76#define ATA_SECURITY_FREEZE_LOCK 0xf5
77#define ATA_SET_FEATURES 0xef
78#define ATA_STANDBY_IMMEDIATE 0xe0
79
80// SET_FEATURES subcommands
81#define ATA_DISABLE_AAM 0xc2
82#define ATA_DISABLE_APM 0x85
83#define ATA_DISABLE_WRITE_CACHE 0x82
84#define ATA_DISABLE_READ_LOOK_AHEAD 0x55
85#define ATA_ENABLE_AAM 0x42
86#define ATA_ENABLE_APM 0x05
87#define ATA_ENABLE_WRITE_CACHE 0x02
88#define ATA_ENABLE_READ_LOOK_AHEAD 0xaa
89
2127e193
GI
90// 48-bit commands
91#define ATA_READ_LOG_EXT 0x2F
832b75ed
GG
92
93// ATA Specification Feature Register Values (SMART Subcommands).
94// Note that some are obsolete as of ATA-7.
95#define ATA_SMART_READ_VALUES 0xd0
96#define ATA_SMART_READ_THRESHOLDS 0xd1
97#define ATA_SMART_AUTOSAVE 0xd2
98#define ATA_SMART_SAVE 0xd3
99#define ATA_SMART_IMMEDIATE_OFFLINE 0xd4
100#define ATA_SMART_READ_LOG_SECTOR 0xd5
101#define ATA_SMART_WRITE_LOG_SECTOR 0xd6
102#define ATA_SMART_WRITE_THRESHOLDS 0xd7
103#define ATA_SMART_ENABLE 0xd8
104#define ATA_SMART_DISABLE 0xd9
105#define ATA_SMART_STATUS 0xda
106// SFF 8035i Revision 2 Specification Feature Register Value (SMART
107// Subcommand)
108#define ATA_SMART_AUTO_OFFLINE 0xdb
109
110// Sector Number values for ATA_SMART_IMMEDIATE_OFFLINE Subcommand
111#define OFFLINE_FULL_SCAN 0
112#define SHORT_SELF_TEST 1
113#define EXTEND_SELF_TEST 2
114#define CONVEYANCE_SELF_TEST 3
115#define SELECTIVE_SELF_TEST 4
116#define ABORT_SELF_TEST 127
117#define SHORT_CAPTIVE_SELF_TEST 129
118#define EXTEND_CAPTIVE_SELF_TEST 130
119#define CONVEYANCE_CAPTIVE_SELF_TEST 131
120#define SELECTIVE_CAPTIVE_SELF_TEST 132
121#define CAPTIVE_MASK (0x01<<7)
122
123// Maximum allowed number of SMART Attributes
124#define NUMBER_ATA_SMART_ATTRIBUTES 30
125
126// Needed parts of the ATA DRIVE IDENTIFY Structure. Those labeled
127// word* are NOT used.
128#pragma pack(1)
129struct ata_identify_device {
130 unsigned short words000_009[10];
131 unsigned char serial_no[20];
132 unsigned short words020_022[3];
133 unsigned char fw_rev[8];
134 unsigned char model[40];
135 unsigned short words047_079[33];
136 unsigned short major_rev_num;
137 unsigned short minor_rev_num;
138 unsigned short command_set_1;
139 unsigned short command_set_2;
140 unsigned short command_set_extension;
141 unsigned short cfs_enable_1;
142 unsigned short word086;
143 unsigned short csf_default;
144 unsigned short words088_255[168];
145} ATTR_PACKED;
146#pragma pack()
147ASSERT_SIZEOF_STRUCT(ata_identify_device, 512);
148
149/* ata_smart_attribute is the vendor specific in SFF-8035 spec */
150#pragma pack(1)
151struct ata_smart_attribute {
152 unsigned char id;
153 // meaning of flag bits: see MACROS just below
154 // WARNING: MISALIGNED!
155 unsigned short flags;
156 unsigned char current;
157 unsigned char worst;
158 unsigned char raw[6];
159 unsigned char reserv;
160} ATTR_PACKED;
161#pragma pack()
162ASSERT_SIZEOF_STRUCT(ata_smart_attribute, 12);
163
164// MACROS to interpret the flags bits in the previous structure.
165// These have not been implemented using bitflags and a union, to make
166// it portable across bit/little endian and different platforms.
167
168// 0: Prefailure bit
169
170// From SFF 8035i Revision 2 page 19: Bit 0 (pre-failure/advisory bit)
171// - If the value of this bit equals zero, an attribute value less
172// than or equal to its corresponding attribute threshold indicates an
173// advisory condition where the usage or age of the device has
174// exceeded its intended design life period. If the value of this bit
175// equals one, an attribute value less than or equal to its
176// corresponding attribute threshold indicates a prefailure condition
177// where imminent loss of data is being predicted.
178#define ATTRIBUTE_FLAGS_PREFAILURE(x) (x & 0x01)
179
180// 1: Online bit
181
182// From SFF 8035i Revision 2 page 19: Bit 1 (on-line data collection
183// bit) - If the value of this bit equals zero, then the attribute
184// value is updated only during off-line data collection
185// activities. If the value of this bit equals one, then the attribute
186// value is updated during normal operation of the device or during
187// both normal operation and off-line testing.
188#define ATTRIBUTE_FLAGS_ONLINE(x) (x & 0x02)
189
190
191// The following are (probably) IBM's, Maxtors and Quantum's definitions for the
192// vendor-specific bits:
193// 2: Performance type bit
194#define ATTRIBUTE_FLAGS_PERFORMANCE(x) (x & 0x04)
195
196// 3: Errorrate type bit
197#define ATTRIBUTE_FLAGS_ERRORRATE(x) (x & 0x08)
198
199// 4: Eventcount bit
200#define ATTRIBUTE_FLAGS_EVENTCOUNT(x) (x & 0x10)
201
202// 5: Selfpereserving bit
203#define ATTRIBUTE_FLAGS_SELFPRESERVING(x) (x & 0x20)
204
a7e8ffec
GI
205// 6-15: Reserved for future use
206#define ATTRIBUTE_FLAGS_OTHER(x) ((x) & 0xffc0)
832b75ed 207
832b75ed 208
d008864d
GI
209// Format of data returned by SMART READ DATA
210// Table 62 of T13/1699-D (ATA8-ACS) Revision 6a, September 2008
832b75ed
GG
211#pragma pack(1)
212struct ata_smart_values {
213 unsigned short int revnumber;
214 struct ata_smart_attribute vendor_attributes [NUMBER_ATA_SMART_ATTRIBUTES];
215 unsigned char offline_data_collection_status;
216 unsigned char self_test_exec_status; //IBM # segments for offline collection
217 unsigned short int total_time_to_complete_off_line; // IBM different
218 unsigned char vendor_specific_366; // Maxtor & IBM curent segment pointer
219 unsigned char offline_data_collection_capability;
220 unsigned short int smart_capability;
221 unsigned char errorlog_capability;
222 unsigned char vendor_specific_371; // Maxtor, IBM: self-test failure checkpoint see below!
223 unsigned char short_test_completion_time;
d008864d 224 unsigned char extend_test_completion_time_b; // If 0xff, use 16-bit value below
832b75ed 225 unsigned char conveyance_test_completion_time;
d008864d
GI
226 unsigned short extend_test_completion_time_w; // e04130r2, added to T13/1699-D Revision 1c, April 2005
227 unsigned char reserved_377_385[9];
832b75ed
GG
228 unsigned char vendor_specific_386_510[125]; // Maxtor bytes 508-509 Attribute/Threshold Revision #
229 unsigned char chksum;
230} ATTR_PACKED;
231#pragma pack()
232ASSERT_SIZEOF_STRUCT(ata_smart_values, 512);
233
234/* Maxtor, IBM: self-test failure checkpoint byte meaning:
235 00 - write test
236 01 - servo basic
237 02 - servo random
238 03 - G-list scan
239 04 - Handling damage
240 05 - Read scan
241*/
242
243/* Vendor attribute of SMART Threshold (compare to ata_smart_attribute above) */
244#pragma pack(1)
245struct ata_smart_threshold_entry {
246 unsigned char id;
247 unsigned char threshold;
248 unsigned char reserved[10];
249} ATTR_PACKED;
250#pragma pack()
251ASSERT_SIZEOF_STRUCT(ata_smart_threshold_entry, 12);
252
253/* Format of Read SMART THreshold Command */
254/* Compare to ata_smart_values above */
255#pragma pack(1)
256struct ata_smart_thresholds_pvt {
257 unsigned short int revnumber;
258 struct ata_smart_threshold_entry thres_entries[NUMBER_ATA_SMART_ATTRIBUTES];
259 unsigned char reserved[149];
260 unsigned char chksum;
261} ATTR_PACKED;
262#pragma pack()
263ASSERT_SIZEOF_STRUCT(ata_smart_thresholds_pvt, 512);
264
265
266// Table 42 of T13/1321D Rev 1 spec (Error Data Structure)
267#pragma pack(1)
268struct ata_smart_errorlog_error_struct {
269 unsigned char reserved;
270 unsigned char error_register;
271 unsigned char sector_count;
272 unsigned char sector_number;
273 unsigned char cylinder_low;
274 unsigned char cylinder_high;
275 unsigned char drive_head;
276 unsigned char status;
277 unsigned char extended_error[19];
278 unsigned char state;
279 unsigned short timestamp;
280} ATTR_PACKED;
281#pragma pack()
282ASSERT_SIZEOF_STRUCT(ata_smart_errorlog_error_struct, 30);
283
284
285// Table 41 of T13/1321D Rev 1 spec (Command Data Structure)
286#pragma pack(1)
287struct ata_smart_errorlog_command_struct {
288 unsigned char devicecontrolreg;
289 unsigned char featuresreg;
290 unsigned char sector_count;
291 unsigned char sector_number;
292 unsigned char cylinder_low;
293 unsigned char cylinder_high;
294 unsigned char drive_head;
295 unsigned char commandreg;
296 unsigned int timestamp;
297} ATTR_PACKED;
298#pragma pack()
299ASSERT_SIZEOF_STRUCT(ata_smart_errorlog_command_struct, 12);
300
301// Table 40 of T13/1321D Rev 1 spec (Error log data structure)
302#pragma pack(1)
303struct ata_smart_errorlog_struct {
304 struct ata_smart_errorlog_command_struct commands[5];
305 struct ata_smart_errorlog_error_struct error_struct;
306} ATTR_PACKED;
307#pragma pack()
308ASSERT_SIZEOF_STRUCT(ata_smart_errorlog_struct, 90);
309
310// Table 39 of T13/1321D Rev 1 spec (SMART error log sector)
311#pragma pack(1)
312struct ata_smart_errorlog {
313 unsigned char revnumber;
314 unsigned char error_log_pointer;
315 struct ata_smart_errorlog_struct errorlog_struct[5];
316 unsigned short int ata_error_count;
317 unsigned char reserved[57];
318 unsigned char checksum;
319} ATTR_PACKED;
320#pragma pack()
321ASSERT_SIZEOF_STRUCT(ata_smart_errorlog, 512);
322
2127e193
GI
323
324// Extended Comprehensive SMART Error Log data structures
325// See Section A.7 of
326// AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
327// T13/1699-D Revision 6a (Working Draft), September 6, 2008.
328
329// Command data structure
330// Table A.9 of T13/1699-D Revision 6a
331#pragma pack(1)
332struct ata_smart_exterrlog_command
333{
334 unsigned char device_control_register;
335 unsigned char features_register;
336 unsigned char features_register_hi;
337 unsigned char count_register;
338 unsigned char count_register_hi;
339 unsigned char lba_low_register;
340 unsigned char lba_low_register_hi;
341 unsigned char lba_mid_register;
342 unsigned char lba_mid_register_hi;
343 unsigned char lba_high_register;
344 unsigned char lba_high_register_hi;
345 unsigned char device_register;
346 unsigned char command_register;
347
348 unsigned char reserved;
349 unsigned int timestamp;
350} ATTR_PACKED;
351#pragma pack()
352ASSERT_SIZEOF_STRUCT(ata_smart_exterrlog_command, 18);
353
354// Error data structure
355// Table A.10 T13/1699-D Revision 6a
356#pragma pack(1)
357struct ata_smart_exterrlog_error
358{
359 unsigned char device_control_register;
360 unsigned char error_register;
361 unsigned char count_register;
362 unsigned char count_register_hi;
363 unsigned char lba_low_register;
364 unsigned char lba_low_register_hi;
365 unsigned char lba_mid_register;
366 unsigned char lba_mid_register_hi;
367 unsigned char lba_high_register;
368 unsigned char lba_high_register_hi;
369 unsigned char device_register;
370 unsigned char status_register;
371
372 unsigned char extended_error[19];
373 unsigned char state;
374 unsigned short timestamp;
375} ATTR_PACKED;
376#pragma pack()
377ASSERT_SIZEOF_STRUCT(ata_smart_exterrlog_error, 34);
378
379// Error log data structure
380// Table A.8 of T13/1699-D Revision 6a
381#pragma pack(1)
382struct ata_smart_exterrlog_error_log
383{
384 ata_smart_exterrlog_command commands[5];
385 ata_smart_exterrlog_error error;
386} ATTR_PACKED;
387#pragma pack()
388ASSERT_SIZEOF_STRUCT(ata_smart_exterrlog_error_log, 124);
389
390// Ext. Comprehensive SMART error log
391// Table A.7 of T13/1699-D Revision 6a
392#pragma pack(1)
393struct ata_smart_exterrlog
394{
395 unsigned char version;
396 unsigned char reserved1;
397 unsigned short error_log_index;
398 ata_smart_exterrlog_error_log error_logs[4];
399 unsigned short device_error_count;
400 unsigned char reserved2[9];
401 unsigned char checksum;
402} ATTR_PACKED;
403#pragma pack()
404ASSERT_SIZEOF_STRUCT(ata_smart_exterrlog, 512);
405
406
832b75ed
GG
407// Table 45 of T13/1321D Rev 1 spec (Self-test log descriptor entry)
408#pragma pack(1)
409struct ata_smart_selftestlog_struct {
410 unsigned char selftestnumber; // Sector number register
411 unsigned char selfteststatus;
412 unsigned short int timestamp;
413 unsigned char selftestfailurecheckpoint;
414 unsigned int lbafirstfailure;
415 unsigned char vendorspecific[15];
416} ATTR_PACKED;
417#pragma pack()
418ASSERT_SIZEOF_STRUCT(ata_smart_selftestlog_struct, 24);
419
420// Table 44 of T13/1321D Rev 1 spec (Self-test log data structure)
421#pragma pack(1)
422struct ata_smart_selftestlog {
423 unsigned short int revnumber;
424 struct ata_smart_selftestlog_struct selftest_struct[21];
425 unsigned char vendorspecific[2];
426 unsigned char mostrecenttest;
427 unsigned char reserved[2];
428 unsigned char chksum;
429} ATTR_PACKED;
430#pragma pack()
431ASSERT_SIZEOF_STRUCT(ata_smart_selftestlog, 512);
432
2127e193
GI
433// Extended SMART Self-test log data structures
434// See Section A.8 of
435// AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
436// T13/1699-D Revision 6a (Working Draft), September 6, 2008.
437
438// Extended Self-test log descriptor entry
439// Table A.13 of T13/1699-D Revision 6a
440#pragma pack(1)
441struct ata_smart_extselftestlog_desc
442{
443 unsigned char self_test_type;
444 unsigned char self_test_status;
445 unsigned short timestamp;
446 unsigned char checkpoint;
447 unsigned char failing_lba[6];
448 unsigned char vendorspecific[15];
449} ATTR_PACKED;
450#pragma pack()
451ASSERT_SIZEOF_STRUCT(ata_smart_extselftestlog_desc, 26);
452
453// Extended Self-test log data structure
454// Table A.12 of T13/1699-D Revision 6a
455#pragma pack(1)
456struct ata_smart_extselftestlog
457{
458 unsigned char version;
459 unsigned char reserved1;
460 unsigned short log_desc_index;
461 struct ata_smart_extselftestlog_desc log_descs[19];
462 unsigned char vendor_specifc[2];
463 unsigned char reserved2[11];
464 unsigned char chksum;
465} ATTR_PACKED;
466#pragma pack()
467ASSERT_SIZEOF_STRUCT(ata_smart_extselftestlog, 512);
468
832b75ed
GG
469// SMART LOG DIRECTORY Table 52 of T13/1532D Vol 1 Rev 1a
470#pragma pack(1)
471struct ata_smart_log_entry {
472 unsigned char numsectors;
473 unsigned char reserved;
474} ATTR_PACKED;
475#pragma pack()
476ASSERT_SIZEOF_STRUCT(ata_smart_log_entry, 2);
477
478#pragma pack(1)
479struct ata_smart_log_directory {
480 unsigned short int logversion;
481 struct ata_smart_log_entry entry[255];
482} ATTR_PACKED;
483#pragma pack()
484ASSERT_SIZEOF_STRUCT(ata_smart_log_directory, 512);
485
486// SMART SELECTIVE SELF-TEST LOG Table 61 of T13/1532D Volume 1
487// Revision 3
488#pragma pack(1)
489struct test_span {
490 uint64_t start;
491 uint64_t end;
492} ATTR_PACKED;
493#pragma pack()
494ASSERT_SIZEOF_STRUCT(test_span, 16);
495
496#pragma pack(1)
497struct ata_selective_self_test_log {
498 unsigned short logversion;
499 struct test_span span[5];
500 unsigned char reserved1[337-82+1];
501 unsigned char vendor_specific1[491-338+1];
502 uint64_t currentlba;
503 unsigned short currentspan;
504 unsigned short flags;
505 unsigned char vendor_specific2[507-504+1];
506 unsigned short pendingtime;
507 unsigned char reserved2;
508 unsigned char checksum;
509} ATTR_PACKED;
510#pragma pack()
511ASSERT_SIZEOF_STRUCT(ata_selective_self_test_log, 512);
512
513#define SELECTIVE_FLAG_DOSCAN (0x0002)
514#define SELECTIVE_FLAG_PENDING (0x0008)
515#define SELECTIVE_FLAG_ACTIVE (0x0010)
516
a37e7145
GG
517
518// SCT (SMART Command Transport) data structures
519// See Sections 8.2 and 8.3 of:
520// AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
521// T13/1699-D Revision 3f (Working Draft), December 11, 2006.
522
523// SCT Status response (read with SMART_READ_LOG page 0xe0)
1d06b804 524// Table 182 of T13/BSR INCITS 529 (ACS-4) Revision 04, August 25, 2014
a37e7145
GG
525#pragma pack(1)
526struct ata_sct_status_response
527{
528 unsigned short format_version; // 0-1: Status response format version number (2, 3)
529 unsigned short sct_version; // 2-3: Vendor specific version number
530 unsigned short sct_spec; // 4-5: SCT level supported (1)
531 unsigned int status_flags; // 6-9: Status flags (Bit 0: Segment initialized, Bits 1-31: reserved)
532 unsigned char device_state; // 10: Device State (0-5)
533 unsigned char bytes011_013[3]; // 11-13: reserved
534 unsigned short ext_status_code; // 14-15: Status of last SCT command (0xffff if executing)
535 unsigned short action_code; // 16-17: Action code of last SCT command
536 unsigned short function_code; // 18-19: Function code of last SCT command
537 unsigned char bytes020_039[20]; // 20-39: reserved
538 uint64_t lba_current; // 40-47: LBA of SCT command executing in background
539 unsigned char bytes048_199[152]; // 48-199: reserved
540 signed char hda_temp; // 200: Current temperature in Celsius (0x80 = invalid)
541 signed char min_temp; // 201: Minimum temperature this power cycle
542 signed char max_temp; // 202: Maximum temperature this power cycle
543 signed char life_min_temp; // 203: Minimum lifetime temperature
544 signed char life_max_temp; // 204: Maximum lifetime temperature
545 unsigned char byte205; // 205: reserved (T13/e06152r0-2: Average lifetime temperature)
546 unsigned int over_limit_count; // 206-209: # intervals since last reset with temperature > Max Op Limit
547 unsigned int under_limit_count; // 210-213: # intervals since last reset with temperature < Min Op Limit
1d06b804
GI
548 unsigned short smart_status; // 214-215: LBA(32:8) of SMART RETURN STATUS (0, 0x2cf4, 0xc24f) (ACS-4)
549 unsigned char bytes216_479[479-216+1]; // 216-479: reserved
a37e7145
GG
550 unsigned char vendor_specific[32];// 480-511: vendor specific
551} ATTR_PACKED;
552#pragma pack()
553ASSERT_SIZEOF_STRUCT(ata_sct_status_response, 512);
554
7f0798ef
GI
555// SCT Error Recovery Control command (send with SMART_WRITE_LOG page 0xe0)
556// Table 88 of T13/1699-D Revision 6a
557#pragma pack(1)
558struct ata_sct_error_recovery_control_command
559{
560 unsigned short action_code; // 3 = Error Recovery Control
561 unsigned short function_code; // 1 = Set, 2 = Return
562 unsigned short selection_code; // 1 = Read Timer, 2 = Write Timer
563 unsigned short time_limit; // If set: Recovery time limit in 100ms units
564 unsigned short words004_255[252]; // reserved
565} ATTR_PACKED;
566#pragma pack()
567ASSERT_SIZEOF_STRUCT(ata_sct_error_recovery_control_command, 512);
568
a37e7145
GG
569// SCT Feature Control command (send with SMART_WRITE_LOG page 0xe0)
570// Table 72 of T13/1699-D Revision 3f
571#pragma pack(1)
572struct ata_sct_feature_control_command
573{
574 unsigned short action_code; // 4 = Feature Control
575 unsigned short function_code; // 1 = Set, 2 = Return, 3 = Return options
576 unsigned short feature_code; // 3 = Temperature logging interval
577 unsigned short state; // Interval
7f0798ef
GI
578 unsigned short option_flags; // Bit 0: persistent, Bits 1-15: reserved
579 unsigned short words005_255[251]; // reserved
a37e7145
GG
580} ATTR_PACKED;
581#pragma pack()
582ASSERT_SIZEOF_STRUCT(ata_sct_feature_control_command, 512);
583
584// SCT Data Table command (send with SMART_WRITE_LOG page 0xe0)
585// Table 73 of T13/1699-D Revision 3f
586#pragma pack(1)
587struct ata_sct_data_table_command
588{
589 unsigned short action_code; // 5 = Data Table
590 unsigned short function_code; // 1 = Read Table
591 unsigned short table_id; // 2 = Temperature History
592 unsigned short words003_255[253]; // reserved
593} ATTR_PACKED;
594#pragma pack()
595ASSERT_SIZEOF_STRUCT(ata_sct_data_table_command, 512);
596
597// SCT Temperature History Table (read with SMART_READ_LOG page 0xe1)
598// Table 75 of T13/1699-D Revision 3f
599#pragma pack(1)
600struct ata_sct_temperature_history_table
601{
602 unsigned short format_version; // 0-1: Data table format version number (2)
603 unsigned short sampling_period; // 2-3: Temperature sampling period in minutes
604 unsigned short interval; // 4-5: Timer interval between history entries
605 signed char max_op_limit; // 6: Maximum recommended continuous operating temperature
606 signed char over_limit; // 7: Maximum temperature limit
607 signed char min_op_limit; // 8: Minimum recommended continuous operating limit
608 signed char under_limit; // 9: Minimum temperature limit
609 unsigned char bytes010_029[20]; // 10-29: reserved
610 unsigned short cb_size; // 30-31: Number of history entries (range 128-478)
611 unsigned short cb_index; // 32-33: Index of last updated entry (zero-based)
612 signed char cb[478]; // 34-(34+cb_size-1): Circular buffer of temperature values
613} ATTR_PACKED;
614#pragma pack()
615ASSERT_SIZEOF_STRUCT(ata_sct_temperature_history_table, 512);
616
2127e193
GI
617// Possible values for span_args.mode
618enum {
619 SEL_RANGE, // MIN-MAX
620 SEL_REDO, // redo this
621 SEL_NEXT, // do next range
622 SEL_CONT // redo or next depending of last test status
623};
624
625// Arguments for selective self-test
626struct ata_selective_selftest_args
627{
628 // Arguments for each span
629 struct span_args
630 {
631 uint64_t start; // First block
632 uint64_t end; // Last block
633 int mode; // SEL_*, see above
634
635 span_args()
636 : start(0), end(0), mode(SEL_RANGE) { }
637 };
638
639 span_args span[5]; // Range and mode for 5 spans
640 int num_spans; // Number of spans
641 int pending_time; // One plus time in minutes to wait after powerup before restarting
642 // interrupted offline scan after selective self-test.
643 int scan_after_select; // Run offline scan after selective self-test:
644 // 0: don't change,
645 // 1: turn off scan after selective self-test,
646 // 2: turn on scan after selective self-test.
647
648 ata_selective_selftest_args()
649 : num_spans(0), pending_time(0), scan_after_select(0) { }
650};
651
bed94269
GI
652// Priority for vendor attribute defs
653enum ata_vendor_def_prior
654{
655 PRIOR_DEFAULT,
656 PRIOR_DATABASE,
657 PRIOR_USER
658};
659
660// Raw attribute value print formats
661enum ata_attr_raw_format
662{
663 RAWFMT_DEFAULT,
664 RAWFMT_RAW8,
665 RAWFMT_RAW16,
666 RAWFMT_RAW48,
667 RAWFMT_HEX48,
e165493d
GI
668 RAWFMT_RAW56,
669 RAWFMT_HEX56,
bed94269
GI
670 RAWFMT_RAW64,
671 RAWFMT_HEX64,
672 RAWFMT_RAW16_OPT_RAW16,
673 RAWFMT_RAW16_OPT_AVG16,
e165493d 674 RAWFMT_RAW24_OPT_RAW8,
cfbba5b9
GI
675 RAWFMT_RAW24_DIV_RAW24,
676 RAWFMT_RAW24_DIV_RAW32,
bed94269
GI
677 RAWFMT_SEC2HOUR,
678 RAWFMT_MIN2HOUR,
679 RAWFMT_HALFMIN2HOUR,
cfbba5b9 680 RAWFMT_MSEC24_HOUR32,
bed94269
GI
681 RAWFMT_TEMPMINMAX,
682 RAWFMT_TEMP10X,
683};
684
685// Attribute flags
686enum {
a23d5117
GI
687 ATTRFLAG_INCREASING = 0x01, // Value not reset (for reallocated/pending counts)
688 ATTRFLAG_NO_NORMVAL = 0x02, // Normalized value not valid
689 ATTRFLAG_NO_WORSTVAL = 0x04 // Worst value not valid
bed94269
GI
690};
691
692// Vendor attribute display defs for all attribute ids
693class ata_vendor_attr_defs
694{
695public:
696 struct entry
697 {
698 std::string name; // Attribute name, empty for default
699 ata_attr_raw_format raw_format; // Raw value print format
700 ata_vendor_def_prior priority; // Setting priority
701 unsigned flags; // ATTRFLAG_*
a23d5117 702 char byteorder[8+1]; // String [012345rvwz] to define byte order
bed94269
GI
703
704 entry()
705 : raw_format(RAWFMT_DEFAULT),
706 priority(PRIOR_DEFAULT),
707 flags(0)
a23d5117 708 { byteorder[0] = 0; }
bed94269
GI
709 };
710
711 entry & operator[](unsigned char id)
712 { return m_defs[id]; }
713
714 const entry & operator[](unsigned char id) const
715 { return m_defs[id]; }
716
717private:
718 entry m_defs[256];
719};
720
a37e7145 721
ee38a438
GI
722// Possible values for firmwarebugs
723enum firmwarebug_t {
724 BUG_NONE = 0,
725 BUG_NOLOGDIR,
726 BUG_SAMSUNG,
727 BUG_SAMSUNG2,
728 BUG_SAMSUNG3,
729 BUG_XERRORLBA
730};
731
732// Set of firmware bugs
733class firmwarebug_defs
734{
735public:
736 firmwarebug_defs()
737 : m_bugs(0) { }
738
739 bool is_set(firmwarebug_t bug) const
740 { return !!(m_bugs & (1 << bug)); }
741
742 void set(firmwarebug_t bug)
743 { m_bugs |= (1 << bug); }
744
745 void set(firmwarebug_defs bugs)
746 { m_bugs |= bugs.m_bugs; }
747
748private:
749 unsigned m_bugs;
750};
751
752
cfbba5b9
GI
753// Print ATA debug messages?
754extern unsigned char ata_debugmode;
755
756// Suppress serial number?
757extern bool dont_print_serial_number;
758
832b75ed 759// Get information from drive
ee38a438
GI
760int ata_read_identity(ata_device * device, ata_identify_device * buf, bool fix_swapped_id,
761 unsigned char * raw_buf = 0);
2127e193 762int ataCheckPowerMode(ata_device * device);
832b75ed 763
d008864d
GI
764// Issue a no-data ATA command with optional sector count register value
765bool ata_nodata_command(ata_device * device, unsigned char command, int sector_count = -1);
766
767// Issue SET FEATURES command with optional sector count register value
768bool ata_set_features(ata_device * device, unsigned char features, int sector_count = -1);
769
832b75ed 770/* Read S.M.A.R.T information from drive */
2127e193
GI
771int ataReadSmartValues(ata_device * device,struct ata_smart_values *);
772int ataReadSmartThresholds(ata_device * device, struct ata_smart_thresholds_pvt *);
773int ataReadErrorLog (ata_device * device, ata_smart_errorlog *data,
ee38a438 774 firmwarebug_defs firmwarebugs);
2127e193 775int ataReadSelfTestLog(ata_device * device, ata_smart_selftestlog * data,
ee38a438 776 firmwarebug_defs firmwarebugs);
2127e193 777int ataReadSelectiveSelfTestLog(ata_device * device, struct ata_selective_self_test_log *data);
2127e193
GI
778int ataReadLogDirectory(ata_device * device, ata_smart_log_directory *, bool gpl);
779
780// Read GP Log page(s)
781bool ataReadLogExt(ata_device * device, unsigned char logaddr,
782 unsigned char features, unsigned page,
783 void * data, unsigned nsectors);
784// Read SMART Log page(s)
785bool ataReadSmartLog(ata_device * device, unsigned char logaddr,
786 void * data, unsigned nsectors);
787// Read SMART Extended Comprehensive Error Log
788bool ataReadExtErrorLog(ata_device * device, ata_smart_exterrlog * log,
ee38a438 789 unsigned nsectors, firmwarebug_defs firwarebugs);
2127e193
GI
790// Read SMART Extended Self-test Log
791bool ataReadExtSelfTestLog(ata_device * device, ata_smart_extselftestlog * log,
792 unsigned nsectors);
a37e7145
GG
793
794// Read SCT information
2127e193
GI
795int ataReadSCTStatus(ata_device * device, ata_sct_status_response * sts);
796int ataReadSCTTempHist(ata_device * device, ata_sct_temperature_history_table * tmh,
a37e7145
GG
797 ata_sct_status_response * sts);
798// Set SCT temperature logging interval
2127e193 799int ataSetSCTTempInterval(ata_device * device, unsigned interval, bool persistent);
a37e7145 800
7f0798ef
GI
801// Get/Set SCT Error Recovery Control
802int ataGetSCTErrorRecoveryControltime(ata_device * device, unsigned type, unsigned short & time_limit);
803int ataSetSCTErrorRecoveryControltime(ata_device * device, unsigned type, unsigned short time_limit);
804
832b75ed
GG
805
806/* Enable/Disable SMART on device */
2127e193
GI
807int ataEnableSmart (ata_device * device);
808int ataDisableSmart (ata_device * device);
809int ataEnableAutoSave(ata_device * device);
810int ataDisableAutoSave(ata_device * device);
832b75ed
GG
811
812/* Automatic Offline Testing */
2127e193
GI
813int ataEnableAutoOffline (ata_device * device);
814int ataDisableAutoOffline (ata_device * device);
832b75ed
GG
815
816/* S.M.A.R.T. test commands */
d008864d
GI
817int ataSmartTest(ata_device * device, int testtype, bool force,
818 const ata_selective_selftest_args & args,
819 const ata_smart_values * sv, uint64_t num_sectors);
820
2127e193 821int ataWriteSelectiveSelfTestLog(ata_device * device, ata_selective_selftest_args & args,
cfbba5b9
GI
822 const ata_smart_values * sv, uint64_t num_sectors,
823 const ata_selective_selftest_args * prev_spans = 0);
832b75ed 824
a7e8ffec
GI
825// Get World Wide Name (WWN) fields.
826// Return NAA field or -1 if WWN is unsupported.
827int ata_get_wwn(const ata_identify_device * id, unsigned & oui, uint64_t & unique_id);
828
ee38a438
GI
829// Get nominal media rotation rate.
830// Returns: 0 = not reported, 1 = SSD, >1 = HDD rpm, < 0 = -(Unknown value)
831int ata_get_rotation_rate(const ata_identify_device * id);
832
832b75ed 833// If SMART supported, this is guaranteed to return 1 if SMART is enabled, else 0.
2127e193 834int ataDoesSmartWork(ata_device * device);
832b75ed
GG
835
836// returns 1 if SMART supported, 0 if not supported or can't tell
2127e193 837int ataSmartSupport(const ata_identify_device * drive);
832b75ed 838
3d17a85c
GI
839// Return values:
840// 1: Write Cache Reordering enabled
841// 2: Write Cache Reordering disabled
842// -1: error
843int ataGetSetSCTWriteCacheReordering(ata_device * device, bool enable, bool persistent, bool set);
844
832b75ed
GG
845// Return values:
846// 1: SMART enabled
847// 0: SMART disabled
848// -1: can't tell if SMART is enabled -- try issuing ataDoesSmartWork command to see
2127e193 849int ataIsSmartEnabled(const ata_identify_device * drive);
832b75ed 850
2127e193 851int ataSmartStatus2(ata_device * device);
832b75ed 852
2127e193 853int isSmartErrorLogCapable(const ata_smart_values * data, const ata_identify_device * identity);
832b75ed 854
2127e193 855int isSmartTestLogCapable(const ata_smart_values * data, const ata_identify_device * identity);
832b75ed 856
2127e193 857int isGeneralPurposeLoggingCapable(const ata_identify_device * identity);
832b75ed 858
2127e193 859int isSupportExecuteOfflineImmediate(const ata_smart_values * data);
832b75ed 860
2127e193 861int isSupportAutomaticTimer(const ata_smart_values * data);
832b75ed 862
2127e193 863int isSupportOfflineAbort(const ata_smart_values * data);
832b75ed 864
2127e193 865int isSupportOfflineSurfaceScan(const ata_smart_values * data);
832b75ed 866
2127e193 867int isSupportSelfTest(const ata_smart_values * data);
832b75ed 868
2127e193 869int isSupportConveyanceSelfTest(const ata_smart_values * data);
832b75ed 870
2127e193 871int isSupportSelectiveSelfTest(const ata_smart_values * data);
832b75ed 872
a37e7145
GG
873inline bool isSCTCapable(const ata_identify_device *drive)
874 { return !!(drive->words088_255[206-88] & 0x01); } // 0x01 = SCT support
875
7f0798ef
GI
876inline bool isSCTErrorRecoveryControlCapable(const ata_identify_device *drive)
877 { return ((drive->words088_255[206-88] & 0x09) == 0x09); } // 0x08 = SCT Error Recovery Control support
878
a37e7145
GG
879inline bool isSCTFeatureControlCapable(const ata_identify_device *drive)
880 { return ((drive->words088_255[206-88] & 0x11) == 0x11); } // 0x10 = SCT Feature Control support
881
882inline bool isSCTDataTableCapable(const ata_identify_device *drive)
883 { return ((drive->words088_255[206-88] & 0x21) == 0x21); } // 0x20 = SCT Data Table support
884
2127e193 885int TestTime(const ata_smart_values * data, int testtype);
832b75ed 886
bed94269
GI
887// Attribute state
888enum ata_attr_state
889{
890 ATTRSTATE_NON_EXISTING, // No such Attribute
891 ATTRSTATE_NO_NORMVAL, // Normalized value not valid
bed94269
GI
892 ATTRSTATE_NO_THRESHOLD, // Unknown or no threshold
893 ATTRSTATE_OK, // Never failed
894 ATTRSTATE_FAILED_PAST, // Failed in the past
895 ATTRSTATE_FAILED_NOW // Failed now
896};
897
898// Get attribute state
899ata_attr_state ata_get_attr_state(const ata_smart_attribute & attr,
cfbba5b9
GI
900 int attridx,
901 const ata_smart_threshold_entry * thresholds,
902 const ata_vendor_attr_defs & defs,
903 unsigned char * threshval = 0);
bed94269
GI
904
905// Get attribute raw value.
906uint64_t ata_get_attr_raw_value(const ata_smart_attribute & attr,
907 const ata_vendor_attr_defs & defs);
908
909// Format attribute raw value.
910std::string ata_format_attr_raw_value(const ata_smart_attribute & attr,
911 const ata_vendor_attr_defs & defs);
912
913// Get attribute name
914std::string ata_get_smart_attr_name(unsigned char id,
ee38a438
GI
915 const ata_vendor_attr_defs & defs,
916 int rpm = 0);
832b75ed
GG
917
918// External handler function, for when a checksum is not correct. Can
919// simply return if no action is desired, or can print error messages
920// as needed, or exit. Is passed a string with the name of the Data
921// Structure with the incorrect checksum.
922void checksumwarning(const char *string);
923
bed94269
GI
924// Find attribute index for attribute id, -1 if not found.
925int ata_find_attr_index(unsigned char id, const ata_smart_values & smartval);
832b75ed 926
4d59bff9
GG
927// Return Temperature Attribute raw value selected according to possible
928// non-default interpretations. If the Attribute does not exist, return 0
bed94269 929unsigned char ata_return_temperature_value(const ata_smart_values * data, const ata_vendor_attr_defs & defs);
4d59bff9 930
832b75ed 931
832b75ed
GG
932#define MAX_ATTRIBUTE_NUM 256
933
bed94269
GI
934// Parse vendor attribute display def (-v option).
935// Return false on error.
936bool parse_attribute_def(const char * opt, ata_vendor_attr_defs & defs,
937 ata_vendor_def_prior priority);
2127e193
GI
938
939// Get ID and increase flag of current pending or offline
940// uncorrectable attribute.
bed94269 941unsigned char get_unc_attr_id(bool offline, const ata_vendor_attr_defs & defs,
2127e193 942 bool & increase);
832b75ed 943
2127e193
GI
944// Return a multiline string containing a list of valid arguments for
945// parse_attribute_def().
946std::string create_vendor_attribute_arg_list();
832b75ed 947
ee38a438
GI
948// Parse firmwarebug def (-F option).
949// Return false on error.
950bool parse_firmwarebug_def(const char * opt, firmwarebug_defs & firmwarebugs);
951
952// Return a string of valid argument words for parse_firmwarebug_def()
953const char * get_valid_firmwarebug_args();
954
832b75ed
GG
955
956// These are two of the functions that are defined in os_*.c and need
957// to be ported to get smartmontools onto another OS.
2127e193
GI
958// Moved to C++ interface
959//int ata_command_interface(int device, smart_command_set command, int select, char *data);
960//int escalade_command_interface(int fd, int escalade_port, int escalade_type, smart_command_set command, int select, char *data);
961//int marvell_command_interface(int device, smart_command_set command, int select, char *data);
962//int highpoint_command_interface(int device, smart_command_set command, int select, char *data);
963//int areca_command_interface(int fd, int disknum, smart_command_set command, int select, char *data);
a37e7145 964
a37e7145 965
832b75ed 966// This function is exported to give low-level capability
2127e193
GI
967int smartcommandhandler(ata_device * device, smart_command_set command, int select, char *data);
968
969// Print one self-test log entry.
cfbba5b9
GI
970// Returns:
971// -1: failed self-test
972// 1: extended self-test completed without error
973// 0: otherwise
974int ataPrintSmartSelfTestEntry(unsigned testnum, unsigned char test_type,
975 unsigned char test_status,
976 unsigned short timestamp,
977 uint64_t failing_lba,
978 bool print_error_only, bool & print_header);
2127e193
GI
979
980// Print Smart self-test log, used by smartctl and smartd.
981int ataPrintSmartSelfTestlog(const ata_smart_selftestlog * data, bool allentries,
ee38a438 982 firmwarebug_defs firmwarebugs);
2127e193 983
a7e8ffec
GI
984// Get capacity and sector sizes from IDENTIFY data
985struct ata_size_info
986{
987 uint64_t sectors;
988 uint64_t capacity;
989 unsigned log_sector_size;
990 unsigned phy_sector_size;
991 unsigned log_sector_offset;
992};
993
994void ata_get_size_info(const ata_identify_device * id, ata_size_info & sizes);
2127e193
GI
995
996// Convenience function for formatting strings from ata_identify_device.
cfbba5b9 997void ata_format_id_string(char * out, const unsigned char * in, int n);
832b75ed
GG
998
999// Utility routines.
2127e193
GI
1000unsigned char checksum(const void * data);
1001
832b75ed
GG
1002void swap2(char *location);
1003void swap4(char *location);
1004void swap8(char *location);
a37e7145
GG
1005// Typesafe variants using overloading
1006inline void swapx(unsigned short * p)
1007 { swap2((char*)p); }
1008inline void swapx(unsigned int * p)
1009 { swap4((char*)p); }
1010inline void swapx(uint64_t * p)
1011 { swap8((char*)p); }
1012
2127e193
GI
1013// Return pseudo-device to parse "smartctl -r ataioctl,2 ..." output
1014// and simulate an ATA device with same behaviour
1015ata_device * get_parsed_ata_device(smart_interface * intf, const char * dev_name);
1016
832b75ed 1017#endif /* ATACMDS_H_ */