blob: c540ff93c85e0fbec8a715892cb4650856428c85 [file] [log] [blame]
Eric Andersen3443bd72003-07-22 07:30:36 +00001/* vi: set sw=4 ts=4: */
2/*
3 * hdparm implementation for busybox
4 *
Glenn L McGrath5be6a202003-11-28 22:55:03 +00005 * Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>
Glenn L McGrath07085852003-10-09 07:28:22 +00006 * Hacked by Tito <farmatito@tiscali.it> for size optimization.
Eric Andersen3443bd72003-07-22 07:30:36 +00007 *
Mike Frysingerf284c762006-04-16 20:38:26 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen3443bd72003-07-22 07:30:36 +00009 *
10 * This program is based on the source code of hdparm: see below...
11 * hdparm.c - Command line interface to get/set hard disk parameters
12 * - by Mark Lord (C) 1994-2002 -- freely distributable
13 */
Glenn L McGrath07085852003-10-09 07:28:22 +000014
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000015#include "busybox.h"
Eric Andersen3443bd72003-07-22 07:30:36 +000016#include <linux/hdreg.h>
Eric Andersen3443bd72003-07-22 07:30:36 +000017
Eric Andersen3443bd72003-07-22 07:30:36 +000018/* device types */
19/* ------------ */
20#define NO_DEV 0xffff
21#define ATA_DEV 0x0000
22#define ATAPI_DEV 0x0001
23
24/* word definitions */
25/* ---------------- */
26#define GEN_CONFIG 0 /* general configuration */
27#define LCYLS 1 /* number of logical cylinders */
28#define CONFIG 2 /* specific configuration */
29#define LHEADS 3 /* number of logical heads */
30#define TRACK_BYTES 4 /* number of bytes/track (ATA-1) */
31#define SECT_BYTES 5 /* number of bytes/sector (ATA-1) */
32#define LSECTS 6 /* number of logical sectors/track */
33#define START_SERIAL 10 /* ASCII serial number */
34#define LENGTH_SERIAL 10 /* 10 words (20 bytes or characters) */
35#define BUF_TYPE 20 /* buffer type (ATA-1) */
36#define BUFFER__SIZE 21 /* buffer size (ATA-1) */
37#define RW_LONG 22 /* extra bytes in R/W LONG cmd ( < ATA-4)*/
38#define START_FW_REV 23 /* ASCII firmware revision */
39#define LENGTH_FW_REV 4 /* 4 words (8 bytes or characters) */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000040#define START_MODEL 27 /* ASCII model number */
41#define LENGTH_MODEL 20 /* 20 words (40 bytes or characters) */
Eric Andersen3443bd72003-07-22 07:30:36 +000042#define SECTOR_XFER_MAX 47 /* r/w multiple: max sectors xfered */
43#define DWORD_IO 48 /* can do double-word IO (ATA-1 only) */
44#define CAPAB_0 49 /* capabilities */
45#define CAPAB_1 50
46#define PIO_MODE 51 /* max PIO mode supported (obsolete)*/
47#define DMA_MODE 52 /* max Singleword DMA mode supported (obs)*/
48#define WHATS_VALID 53 /* what fields are valid */
49#define LCYLS_CUR 54 /* current logical cylinders */
50#define LHEADS_CUR 55 /* current logical heads */
51#define LSECTS_CUR 56 /* current logical sectors/track */
52#define CAPACITY_LSB 57 /* current capacity in sectors */
53#define CAPACITY_MSB 58
54#define SECTOR_XFER_CUR 59 /* r/w multiple: current sectors xfered */
55#define LBA_SECTS_LSB 60 /* LBA: total number of user */
56#define LBA_SECTS_MSB 61 /* addressable sectors */
57#define SINGLE_DMA 62 /* singleword DMA modes */
58#define MULTI_DMA 63 /* multiword DMA modes */
59#define ADV_PIO_MODES 64 /* advanced PIO modes supported */
60 /* multiword DMA xfer cycle time: */
61#define DMA_TIME_MIN 65 /* - minimum */
62#define DMA_TIME_NORM 66 /* - manufacturer's recommended */
63 /* minimum PIO xfer cycle time: */
64#define PIO_NO_FLOW 67 /* - without flow control */
65#define PIO_FLOW 68 /* - with IORDY flow control */
66#define PKT_REL 71 /* typical #ns from PKT cmd to bus rel */
67#define SVC_NBSY 72 /* typical #ns from SERVICE cmd to !BSY */
68#define CDR_MAJOR 73 /* CD ROM: major version number */
69#define CDR_MINOR 74 /* CD ROM: minor version number */
70#define QUEUE_DEPTH 75 /* queue depth */
71#define MAJOR 80 /* major version number */
72#define MINOR 81 /* minor version number */
73#define CMDS_SUPP_0 82 /* command/feature set(s) supported */
74#define CMDS_SUPP_1 83
75#define CMDS_SUPP_2 84
76#define CMDS_EN_0 85 /* command/feature set(s) enabled */
77#define CMDS_EN_1 86
78#define CMDS_EN_2 87
79#define ULTRA_DMA 88 /* ultra DMA modes */
80 /* time to complete security erase */
81#define ERASE_TIME 89 /* - ordinary */
82#define ENH_ERASE_TIME 90 /* - enhanced */
83#define ADV_PWR 91 /* current advanced power management level
Glenn L McGrath07085852003-10-09 07:28:22 +000084 in low byte, 0x40 in high byte. */
Eric Andersen3443bd72003-07-22 07:30:36 +000085#define PSWD_CODE 92 /* master password revision code */
86#define HWRST_RSLT 93 /* hardware reset result */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000087#define ACOUSTIC 94 /* acoustic mgmt values ( >= ATA-6) */
Eric Andersen3443bd72003-07-22 07:30:36 +000088#define LBA_LSB 100 /* LBA: maximum. Currently only 48 */
89#define LBA_MID 101 /* bits are used, but addr 103 */
90#define LBA_48_MSB 102 /* has been reserved for LBA in */
91#define LBA_64_MSB 103 /* the future. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000092#define RM_STAT 127 /* removable media status notification feature set support */
Eric Andersen3443bd72003-07-22 07:30:36 +000093#define SECU_STATUS 128 /* security status */
94#define CFA_PWR_MODE 160 /* CFA power mode 1 */
95#define START_MEDIA 176 /* media serial number */
96#define LENGTH_MEDIA 20 /* 20 words (40 bytes or characters)*/
97#define START_MANUF 196 /* media manufacturer I.D. */
98#define LENGTH_MANUF 10 /* 10 words (20 bytes or characters) */
99#define INTEGRITY 255 /* integrity word */
100
101/* bit definitions within the words */
102/* -------------------------------- */
103
104/* many words are considered valid if bit 15 is 0 and bit 14 is 1 */
105#define VALID 0xc000
106#define VALID_VAL 0x4000
107/* many words are considered invalid if they are either all-0 or all-1 */
108#define NOVAL_0 0x0000
109#define NOVAL_1 0xffff
110
111/* word 0: gen_config */
Glenn L McGrath07085852003-10-09 07:28:22 +0000112#define NOT_ATA 0x8000
Eric Andersen3443bd72003-07-22 07:30:36 +0000113#define NOT_ATAPI 0x4000 /* (check only if bit 15 == 1) */
114#define MEDIA_REMOVABLE 0x0080
115#define DRIVE_NOT_REMOVABLE 0x0040 /* bit obsoleted in ATA 6 */
116#define INCOMPLETE 0x0004
117#define CFA_SUPPORT_VAL 0x848a /* 848a=CFA feature set support */
118#define DRQ_RESPONSE_TIME 0x0060
119#define DRQ_3MS_VAL 0x0000
120#define DRQ_INTR_VAL 0x0020
121#define DRQ_50US_VAL 0x0040
122#define PKT_SIZE_SUPPORTED 0x0003
123#define PKT_SIZE_12_VAL 0x0000
124#define PKT_SIZE_16_VAL 0x0001
125#define EQPT_TYPE 0x1f00
126#define SHIFT_EQPT 8
127
128#define CDROM 0x0005
129
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000130#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000131static const char * const pkt_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000132 "Direct-access device", /* word 0, bits 12-8 = 00 */
133 "Sequential-access device", /* word 0, bits 12-8 = 01 */
134 "Printer", /* word 0, bits 12-8 = 02 */
135 "Processor", /* word 0, bits 12-8 = 03 */
136 "Write-once device", /* word 0, bits 12-8 = 04 */
137 "CD-ROM", /* word 0, bits 12-8 = 05 */
138 "Scanner", /* word 0, bits 12-8 = 06 */
139 "Optical memory", /* word 0, bits 12-8 = 07 */
140 "Medium changer", /* word 0, bits 12-8 = 08 */
141 "Communications device", /* word 0, bits 12-8 = 09 */
142 "ACS-IT8 device", /* word 0, bits 12-8 = 0a */
143 "ACS-IT8 device", /* word 0, bits 12-8 = 0b */
144 "Array controller", /* word 0, bits 12-8 = 0c */
145 "Enclosure services", /* word 0, bits 12-8 = 0d */
146 "Reduced block command device", /* word 0, bits 12-8 = 0e */
147 "Optical card reader/writer", /* word 0, bits 12-8 = 0f */
148 "", /* word 0, bits 12-8 = 10 */
149 "", /* word 0, bits 12-8 = 11 */
150 "", /* word 0, bits 12-8 = 12 */
151 "", /* word 0, bits 12-8 = 13 */
152 "", /* word 0, bits 12-8 = 14 */
153 "", /* word 0, bits 12-8 = 15 */
154 "", /* word 0, bits 12-8 = 16 */
155 "", /* word 0, bits 12-8 = 17 */
156 "", /* word 0, bits 12-8 = 18 */
157 "", /* word 0, bits 12-8 = 19 */
158 "", /* word 0, bits 12-8 = 1a */
159 "", /* word 0, bits 12-8 = 1b */
160 "", /* word 0, bits 12-8 = 1c */
161 "", /* word 0, bits 12-8 = 1d */
162 "", /* word 0, bits 12-8 = 1e */
Rob Landleyadde7982006-05-16 15:32:30 +0000163 "Unknown", /* word 0, bits 12-8 = 1f */
Eric Andersen3443bd72003-07-22 07:30:36 +0000164};
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000165
166static const char * const ata1_cfg_str[] = { /* word 0 in ATA-1 mode */
Rob Landleyadde7982006-05-16 15:32:30 +0000167 "Reserved", /* bit 0 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000168 "hard sectored", /* bit 1 */
169 "soft sectored", /* bit 2 */
170 "not MFM encoded ", /* bit 3 */
171 "head switch time > 15us", /* bit 4 */
172 "spindle motor control option", /* bit 5 */
173 "fixed drive", /* bit 6 */
174 "removable drive", /* bit 7 */
175 "disk xfer rate <= 5Mbs", /* bit 8 */
176 "disk xfer rate > 5Mbs, <= 10Mbs", /* bit 9 */
177 "disk xfer rate > 5Mbs", /* bit 10 */
178 "rotational speed tol.", /* bit 11 */
179 "data strobe offset option", /* bit 12 */
180 "track offset option", /* bit 13 */
181 "format speed tolerance gap reqd", /* bit 14 */
182 "ATAPI" /* bit 14 */
183};
184#endif
185
186/* word 1: number of logical cylinders */
187#define LCYLS_MAX 0x3fff /* maximum allowable value */
188
Eric Andersenaff114c2004-04-14 17:51:38 +0000189/* word 2: specific configuration
Eric Andersen3443bd72003-07-22 07:30:36 +0000190 * (a) require SET FEATURES to spin-up
191 * (b) require spin-up to fully reply to IDENTIFY DEVICE
192 */
193#define STBY_NID_VAL 0x37c8 /* (a) and (b) */
194#define STBY_ID_VAL 0x738c /* (a) and not (b) */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000195#define PWRD_NID_VAL 0x8c73 /* not (a) and (b) */
Eric Andersen3443bd72003-07-22 07:30:36 +0000196#define PWRD_ID_VAL 0xc837 /* not (a) and not (b) */
197
198/* words 47 & 59: sector_xfer_max & sector_xfer_cur */
199#define SECTOR_XFER 0x00ff /* sectors xfered on r/w multiple cmds*/
200#define MULTIPLE_SETTING_VALID 0x0100 /* 1=multiple sector setting is valid */
201
202/* word 49: capabilities 0 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000203#define STD_STBY 0x2000 /* 1=standard values supported (ATA);
Eric Andersen3443bd72003-07-22 07:30:36 +0000204 0=vendor specific values */
205#define IORDY_SUP 0x0800 /* 1=support; 0=may be supported */
206#define IORDY_OFF 0x0400 /* 1=may be disabled */
207#define LBA_SUP 0x0200 /* 1=Logical Block Address support */
208#define DMA_SUP 0x0100 /* 1=Direct Memory Access support */
209#define DMA_IL_SUP 0x8000 /* 1=interleaved DMA support (ATAPI) */
210#define CMD_Q_SUP 0x4000 /* 1=command queuing support (ATAPI) */
211#define OVLP_SUP 0x2000 /* 1=overlap operation support (ATAPI) */
212#define SWRST_REQ 0x1000 /* 1=ATA SW reset required (ATAPI, obsolete */
213
214/* word 50: capabilities 1 */
215#define MIN_STANDBY_TIMER 0x0001 /* 1=device specific standby timer value minimum */
216
217/* words 51 & 52: PIO & DMA cycle times */
218#define MODE 0xff00 /* the mode is in the MSBs */
219
220/* word 53: whats_valid */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000221#define OK_W88 0x0004 /* the ultra_dma info is valid */
Eric Andersen3443bd72003-07-22 07:30:36 +0000222#define OK_W64_70 0x0002 /* see above for word descriptions */
223#define OK_W54_58 0x0001 /* current cyl, head, sector, cap. info valid */
224
225/*word 63,88: dma_mode, ultra_dma_mode*/
226#define MODE_MAX 7 /* bit definitions force udma <=7 (when
227 * udma >=8 comes out it'll have to be
228 * defined in a new dma_mode word!) */
229
230/* word 64: PIO transfer modes */
231#define PIO_SUP 0x00ff /* only bits 0 & 1 are used so far, */
232#define PIO_MODE_MAX 8 /* but all 8 bits are defined */
233
234/* word 75: queue_depth */
235#define DEPTH_BITS 0x001f /* bits used for queue depth */
236
237/* words 80-81: version numbers */
238/* NOVAL_0 or NOVAL_1 means device does not report version */
239
240/* word 81: minor version number */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000241#define MINOR_MAX 0x22
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000242#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
Rob Landley0e6a3e12006-04-28 01:33:30 +0000243static const char *minor_str[MINOR_MAX+2] = { /* word 81 value: */
244 "Unspecified", /* 0x0000 */
Rob Landleyadde7982006-05-16 15:32:30 +0000245 "ATA-1 X3T9.2 781D prior to rev.4", /* 0x0001 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000246 "ATA-1 published, ANSI X3.221-1994", /* 0x0002 */
Rob Landleyadde7982006-05-16 15:32:30 +0000247 "ATA-1 X3T9.2 781D rev.4", /* 0x0003 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000248 "ATA-2 published, ANSI X3.279-1996", /* 0x0004 */
Rob Landleyadde7982006-05-16 15:32:30 +0000249 "ATA-2 X3T10 948D prior to rev.2k", /* 0x0005 */
250 "ATA-3 X3T10 2008D rev.1", /* 0x0006 */
251 "ATA-2 X3T10 948D rev.2k", /* 0x0007 */
252 "ATA-3 X3T10 2008D rev.0", /* 0x0008 */
253 "ATA-2 X3T10 948D rev.3", /* 0x0009 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000254 "ATA-3 published, ANSI X3.298-199x", /* 0x000a */
Rob Landleyadde7982006-05-16 15:32:30 +0000255 "ATA-3 X3T10 2008D rev.6", /* 0x000b */
256 "ATA-3 X3T13 2008D rev.7 and 7a", /* 0x000c */
257 "ATA/ATAPI-4 X3T13 1153D rev.6", /* 0x000d */
258 "ATA/ATAPI-4 T13 1153D rev.13", /* 0x000e */
259 "ATA/ATAPI-4 X3T13 1153D rev.7", /* 0x000f */
260 "ATA/ATAPI-4 T13 1153D rev.18", /* 0x0010 */
261 "ATA/ATAPI-4 T13 1153D rev.15", /* 0x0011 */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000262 "ATA/ATAPI-4 published, ANSI INCITS 317-1998", /* 0x0012 */
Rob Landleyadde7982006-05-16 15:32:30 +0000263 "ATA/ATAPI-5 T13 1321D rev.3",
264 "ATA/ATAPI-4 T13 1153D rev.14", /* 0x0014 */
265 "ATA/ATAPI-5 T13 1321D rev.1", /* 0x0015 */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000266 "ATA/ATAPI-5 published, ANSI INCITS 340-2000", /* 0x0016 */
Rob Landleyadde7982006-05-16 15:32:30 +0000267 "ATA/ATAPI-4 T13 1153D rev.17", /* 0x0017 */
268 "ATA/ATAPI-6 T13 1410D rev.0", /* 0x0018 */
269 "ATA/ATAPI-6 T13 1410D rev.3a", /* 0x0019 */
270 "ATA/ATAPI-7 T13 1532D rev.1", /* 0x001a */
271 "ATA/ATAPI-6 T13 1410D rev.2", /* 0x001b */
272 "ATA/ATAPI-6 T13 1410D rev.1", /* 0x001c */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000273 "ATA/ATAPI-7 published, ANSI INCITS 397-2005", /* 0x001d */
Rob Landleyadde7982006-05-16 15:32:30 +0000274 "ATA/ATAPI-7 T13 1532D rev.0", /* 0x001e */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000275 "Reserved" /* 0x001f */
276 "Reserved" /* 0x0020 */
Rob Landleyadde7982006-05-16 15:32:30 +0000277 "ATA/ATAPI-7 T13 1532D rev.4a", /* 0x0021 */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000278 "ATA/ATAPI-6 published, ANSI INCITS 361-2002", /* 0x0022 */
279 "Reserved" /* 0x0023-0xfffe*/
Eric Andersen3443bd72003-07-22 07:30:36 +0000280};
281#endif
Rob Landley0e6a3e12006-04-28 01:33:30 +0000282static const char actual_ver[MINOR_MAX+2] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000283 /* word 81 value: */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000284 0, /* 0x0000 WARNING: */
285 1, /* 0x0001 WARNING: */
286 1, /* 0x0002 WARNING: */
287 1, /* 0x0003 WARNING: */
288 2, /* 0x0004 WARNING: This array */
289 2, /* 0x0005 WARNING: corresponds */
Eric Andersen3443bd72003-07-22 07:30:36 +0000290 3, /* 0x0006 WARNING: *exactly* */
291 2, /* 0x0007 WARNING: to the ATA/ */
292 3, /* 0x0008 WARNING: ATAPI version */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000293 2, /* 0x0009 WARNING: listed in */
294 3, /* 0x000a WARNING: the */
295 3, /* 0x000b WARNING: minor_str */
Eric Andersen3443bd72003-07-22 07:30:36 +0000296 3, /* 0x000c WARNING: array */
297 4, /* 0x000d WARNING: above. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000298 4, /* 0x000e WARNING: */
299 4, /* 0x000f WARNING: if you change */
300 4, /* 0x0010 WARNING: that one, */
Eric Andersen3443bd72003-07-22 07:30:36 +0000301 4, /* 0x0011 WARNING: change this one */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000302 4, /* 0x0012 WARNING: too!!! */
Eric Andersen3443bd72003-07-22 07:30:36 +0000303 5, /* 0x0013 WARNING: */
304 4, /* 0x0014 WARNING: */
305 5, /* 0x0015 WARNING: */
306 5, /* 0x0016 WARNING: */
307 4, /* 0x0017 WARNING: */
308 6, /* 0x0018 WARNING: */
309 6, /* 0x0019 WARNING: */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000310 7, /* 0x001a WARNING: */
Eric Andersen3443bd72003-07-22 07:30:36 +0000311 6, /* 0x001b WARNING: */
312 6, /* 0x001c WARNING: */
Rob Landley0e6a3e12006-04-28 01:33:30 +0000313 7, /* 0x001d WARNING: */
314 7, /* 0x001e WARNING: */
315 0, /* 0x001f WARNING: */
316 0, /* 0x0020 WARNING: */
317 7, /* 0x0021 WARNING: */
318 6, /* 0x0022 WARNING: */
319 0 /* 0x0023-0xfffe */
Eric Andersen3443bd72003-07-22 07:30:36 +0000320};
321
322/* words 82-84: cmds/feats supported */
323#define CMDS_W82 0x77ff /* word 82: defined command locations*/
324#define CMDS_W83 0x3fff /* word 83: defined command locations*/
325#define CMDS_W84 0x002f /* word 83: defined command locations*/
Glenn L McGrath07085852003-10-09 07:28:22 +0000326#define SUPPORT_48_BIT 0x0400
Eric Andersen3443bd72003-07-22 07:30:36 +0000327#define NUM_CMD_FEAT_STR 48
328
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000329#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000330static const char * const cmd_feat_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000331 "", /* word 82 bit 15: obsolete */
332 "NOP cmd", /* word 82 bit 14 */
333 "READ BUFFER cmd", /* word 82 bit 13 */
334 "WRITE BUFFER cmd", /* word 82 bit 12 */
335 "", /* word 82 bit 11: obsolete */
336 "Host Protected Area feature set", /* word 82 bit 10 */
337 "DEVICE RESET cmd", /* word 82 bit 9 */
338 "SERVICE interrupt", /* word 82 bit 8 */
339 "Release interrupt", /* word 82 bit 7 */
340 "Look-ahead", /* word 82 bit 6 */
341 "Write cache", /* word 82 bit 5 */
342 "PACKET command feature set", /* word 82 bit 4 */
343 "Power Management feature set", /* word 82 bit 3 */
344 "Removable Media feature set", /* word 82 bit 2 */
345 "Security Mode feature set", /* word 82 bit 1 */
346 "SMART feature set", /* word 82 bit 0 */
347 /* --------------*/
348 "", /* word 83 bit 15: !valid bit */
349 "", /* word 83 bit 14: valid bit */
Rob Landleyadde7982006-05-16 15:32:30 +0000350 "FLUSH CACHE EXT cmd", /* word 83 bit 13 */
351 "Mandatory FLUSH CACHE cmd ", /* word 83 bit 12 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000352 "Device Configuration Overlay feature set ",
353 "48-bit Address feature set ", /* word 83 bit 10 */
354 "",
355 "SET MAX security extension", /* word 83 bit 8 */
356 "Address Offset Reserved Area Boot", /* word 83 bit 7 */
357 "SET FEATURES subcommand required to spinup after power up",
358 "Power-Up In Standby feature set", /* word 83 bit 5 */
359 "Removable Media Status Notification feature set",
Eric Andersen06d4ec22004-03-19 10:53:52 +0000360 "Adv. Power Management feature set",/* word 83 bit 3 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000361 "CFA feature set", /* word 83 bit 2 */
362 "READ/WRITE DMA QUEUED", /* word 83 bit 1 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000363 "DOWNLOAD MICROCODE cmd", /* word 83 bit 0 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000364 /* --------------*/
365 "", /* word 84 bit 15: !valid bit */
366 "", /* word 84 bit 14: valid bit */
367 "", /* word 84 bit 13: reserved */
368 "", /* word 84 bit 12: reserved */
369 "", /* word 84 bit 11: reserved */
370 "", /* word 84 bit 10: reserved */
371 "", /* word 84 bit 9: reserved */
372 "", /* word 84 bit 8: reserved */
373 "", /* word 84 bit 7: reserved */
374 "", /* word 84 bit 6: reserved */
375 "General Purpose Logging feature set", /* word 84 bit 5 */
376 "", /* word 84 bit 4: reserved */
377 "Media Card Pass Through Command feature set ",
378 "Media serial number ", /* word 84 bit 2 */
379 "SMART self-test ", /* word 84 bit 1 */
380 "SMART error logging " /* word 84 bit 0 */
381};
Rob Landley0f0b6452006-05-03 18:28:06 +0000382
383static void identify(uint16_t *id_supplied) ATTRIBUTE_NORETURN;
384static void identify_from_stdin(void) ATTRIBUTE_NORETURN;
Rob Landley9c6f9552006-06-08 14:11:36 +0000385#else
386void identify_from_stdin(void);
Eric Andersen3443bd72003-07-22 07:30:36 +0000387#endif
388
389
390/* words 85-87: cmds/feats enabled */
391/* use cmd_feat_str[] to display what commands and features have
Glenn L McGrath07085852003-10-09 07:28:22 +0000392 * been enabled with words 85-87
Eric Andersen3443bd72003-07-22 07:30:36 +0000393 */
394
395/* words 89, 90, SECU ERASE TIME */
396#define ERASE_BITS 0x00ff
397
398/* word 92: master password revision */
399/* NOVAL_0 or NOVAL_1 means no support for master password revision */
400
401/* word 93: hw reset result */
402#define CBLID 0x2000 /* CBLID status */
403#define RST0 0x0001 /* 1=reset to device #0 */
404#define DEV_DET 0x0006 /* how device num determined */
405#define JUMPER_VAL 0x0002 /* device num determined by jumper */
406#define CSEL_VAL 0x0004 /* device num determined by CSEL_VAL */
407
408/* word 127: removable media status notification feature set support */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000409#define RM_STAT_BITS 0x0003
Eric Andersen3443bd72003-07-22 07:30:36 +0000410#define RM_STAT_SUP 0x0001
Glenn L McGrath07085852003-10-09 07:28:22 +0000411
Eric Andersen3443bd72003-07-22 07:30:36 +0000412/* word 128: security */
413#define SECU_ENABLED 0x0002
414#define SECU_LEVEL 0x0010
415#define NUM_SECU_STR 6
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000416#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000417static const char * const secu_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000418 "supported", /* word 128, bit 0 */
419 "enabled", /* word 128, bit 1 */
420 "locked", /* word 128, bit 2 */
421 "frozen", /* word 128, bit 3 */
422 "expired: security count", /* word 128, bit 4 */
423 "supported: enhanced erase" /* word 128, bit 5 */
424};
425#endif
426
427/* word 160: CFA power mode */
428#define VALID_W160 0x8000 /* 1=word valid */
429#define PWR_MODE_REQ 0x2000 /* 1=CFA power mode req'd by some cmds*/
430#define PWR_MODE_OFF 0x1000 /* 1=CFA power moded disabled */
431#define MAX_AMPS 0x0fff /* value = max current in ma */
432
433/* word 255: integrity */
434#define SIG 0x00ff /* signature location */
435#define SIG_VAL 0x00A5 /* signature value */
436
Glenn L McGrath07085852003-10-09 07:28:22 +0000437#define TIMING_MB 64
438#define TIMING_BUF_MB 1
439#define TIMING_BUF_BYTES (TIMING_BUF_MB * 1024 * 1024)
440#define TIMING_BUF_COUNT (timing_MB / TIMING_BUF_MB)
441#define BUFCACHE_FACTOR 2
442
443#undef DO_FLUSHCACHE /* under construction: force cache flush on -W0 */
444
445/* Busybox messages and functions */
Rob Landley5f8b5ec2006-04-29 16:03:40 +0000446static int bb_ioctl(int fd, int request, void *argp, const char *string)
Glenn L McGrath07085852003-10-09 07:28:22 +0000447{
Rob Landley5f8b5ec2006-04-29 16:03:40 +0000448 int e = ioctl(fd, request, argp);
449 if (e && string)
Eric Andersen06d4ec22004-03-19 10:53:52 +0000450 bb_perror_msg(" %s", string);
Rob Landley5f8b5ec2006-04-29 16:03:40 +0000451 return e;
Glenn L McGrath07085852003-10-09 07:28:22 +0000452}
453
Rob Landley5f8b5ec2006-04-29 16:03:40 +0000454static int bb_ioctl_alt(int fd, int cmd, unsigned char *args, int alt, const char *string)
455{
456 if (!ioctl(fd, cmd, args))
457 return 0;
458 args[0] = alt;
459 return bb_ioctl(fd, cmd, args, string);
460}
461
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000462static void on_off(int value)
463{
464 printf(value ? " (on)\n" : " (off)\n");
465}
Glenn L McGrath07085852003-10-09 07:28:22 +0000466
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000467static void print_flag_on_off(int get_arg, const char *s, unsigned long arg)
Glenn L McGrath07085852003-10-09 07:28:22 +0000468{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000469 if (get_arg) {
Rob Landleyadde7982006-05-16 15:32:30 +0000470 printf(" setting %s to %ld", s, arg);
Glenn L McGrath07085852003-10-09 07:28:22 +0000471 on_off(arg);
472 }
473}
474
475static void bb_ioctl_on_off(int fd, int request, void *argp, const char *string,
Rob Landleyadde7982006-05-16 15:32:30 +0000476 const char * str)
Glenn L McGrath07085852003-10-09 07:28:22 +0000477{
Rob Landleya3e4f382006-04-29 16:06:31 +0000478 if (ioctl(fd, request, &argp) != 0)
Eric Andersen06d4ec22004-03-19 10:53:52 +0000479 bb_perror_msg(" %s", string);
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000480 else {
Rob Landleyadde7982006-05-16 15:32:30 +0000481 printf(" %s\t= %2ld", str, (unsigned long) argp);
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000482 on_off(((unsigned long) argp) != 0);
Glenn L McGrath07085852003-10-09 07:28:22 +0000483 }
484}
Eric Andersen416c2422003-12-12 00:08:57 +0000485
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000486#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +0000487static void print_ascii(uint16_t *p, uint8_t length);
488
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000489static void xprint_ascii(uint16_t *val, int i, const char *string, int n)
Glenn L McGrath07085852003-10-09 07:28:22 +0000490{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000491 if (val[i]) {
492 printf("\t%-20s", string);
Glenn L McGrath07085852003-10-09 07:28:22 +0000493 print_ascii(&val[i], n);
494 }
495}
Eric Andersen416c2422003-12-12 00:08:57 +0000496#endif
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000497/* end of busybox specific stuff */
Glenn L McGrath07085852003-10-09 07:28:22 +0000498
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000499#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +0000500static uint8_t mode_loop(uint16_t mode_sup, uint16_t mode_sel, int cc, uint8_t *have_mode)
501{
Eric Andersen3443bd72003-07-22 07:30:36 +0000502 uint16_t ii;
503 uint8_t err_dma = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000504
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000505 for (ii = 0; ii <= MODE_MAX; ii++) {
506 if (mode_sel & 0x0001) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000507 printf("*%cdma%u ", cc, ii);
Rob Landleya3e4f382006-04-29 16:06:31 +0000508 if (*have_mode)
Glenn L McGrath07085852003-10-09 07:28:22 +0000509 err_dma = 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000510 *have_mode = 1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000511 } else if (mode_sup & 0x0001)
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000512 printf("%cdma%u ", cc, ii);
Glenn L McGrath07085852003-10-09 07:28:22 +0000513
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000514 mode_sup >>= 1;
515 mode_sel >>= 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000516 }
517 return err_dma;
518}
Glenn L McGrath07085852003-10-09 07:28:22 +0000519
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000520static void print_ascii(uint16_t *p, uint8_t length)
521{
Eric Andersen3443bd72003-07-22 07:30:36 +0000522 uint8_t ii;
523 char cl;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000524
Eric Andersen3443bd72003-07-22 07:30:36 +0000525 /* find first non-space & print it */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000526 for (ii = 0; ii < length; ii++) {
527 if ((char)((*p)>>8) != ' ')
Glenn L McGrath07085852003-10-09 07:28:22 +0000528 break;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000529 cl = (char)(*p);
530 if (cl != ' ') {
531 if (cl != '\0')
532 printf("%c", cl);
Glenn L McGrath07085852003-10-09 07:28:22 +0000533 p++;
534 ii++;
Eric Andersen3443bd72003-07-22 07:30:36 +0000535 break;
536 }
537 p++;
538 }
539 /* print the rest */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000540 for (; ii< length; ii++) {
Rob Landleya3e4f382006-04-29 16:06:31 +0000541 if (!(*p))
Glenn L McGrath07085852003-10-09 07:28:22 +0000542 break; /* some older devices have NULLs */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000543 printf("%c%c", (char)((*p)>>8), (char)(*p));
Eric Andersen3443bd72003-07-22 07:30:36 +0000544 p++;
545 }
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000546 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000547}
548
Rob Landley0753f4a2006-06-07 00:27:25 +0000549// Parse 512 byte disk identification block and print much crap.
550
Rob Landley6389ff12006-05-01 19:28:53 +0000551static void identify(uint16_t *id_supplied)
Eric Andersen3443bd72003-07-22 07:30:36 +0000552{
Rob Landley5bc3f052006-04-29 19:11:24 +0000553 uint16_t buf[256];
554 uint16_t *val, ii, jj, kk;
Eric Andersen3443bd72003-07-22 07:30:36 +0000555 uint16_t like_std = 1, std = 0, min_std = 0xffff;
556 uint16_t dev = NO_DEV, eqpt = NO_DEV;
557 uint8_t have_mode = 0, err_dma = 0;
558 uint8_t chksum = 0;
559 uint32_t ll, mm, nn, oo;
Rob Landley2e2d7522006-04-29 15:23:33 +0000560 uint64_t bbbig; /* (:) */
Rob Landleyadde7982006-05-16 15:32:30 +0000561 const char *strng;
Eric Andersen3443bd72003-07-22 07:30:36 +0000562
Rob Landley0753f4a2006-06-07 00:27:25 +0000563 // Adjust for endianness if necessary.
564
Rob Landley5bc3f052006-04-29 19:11:24 +0000565 if (BB_BIG_ENDIAN) {
566 swab(id_supplied, buf, sizeof(buf));
567 val = buf;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000568 } else
569 val = id_supplied;
Rob Landley5bc3f052006-04-29 19:11:24 +0000570
Eric Andersen3443bd72003-07-22 07:30:36 +0000571 chksum &= 0xff;
572
573 /* check if we recognise the device type */
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000574 puts("");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000575 if (!(val[GEN_CONFIG] & NOT_ATA)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000576 dev = ATA_DEV;
577 printf("ATA device, with ");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000578 } else if (val[GEN_CONFIG]==CFA_SUPPORT_VAL) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000579 dev = ATA_DEV;
580 like_std = 4;
581 printf("CompactFlash ATA device, with ");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000582 } else if (!(val[GEN_CONFIG] & NOT_ATAPI)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000583 dev = ATAPI_DEV;
584 eqpt = (val[GEN_CONFIG] & EQPT_TYPE) >> SHIFT_EQPT;
585 printf("ATAPI %s, with ", pkt_str[eqpt]);
586 like_std = 3;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000587 } else
Glenn L McGrath07085852003-10-09 07:28:22 +0000588 /*"Unknown device type:\n\tbits 15&14 of general configuration word 0 both set to 1.\n"*/
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000589 bb_error_msg_and_die("unknown device type");
Eric Andersen3443bd72003-07-22 07:30:36 +0000590
Rob Landleyadde7982006-05-16 15:32:30 +0000591 printf("%sremovable media\n", !(val[GEN_CONFIG] & MEDIA_REMOVABLE) ? "non-" : "");
Eric Andersen3443bd72003-07-22 07:30:36 +0000592 /* Info from the specific configuration word says whether or not the
593 * ID command completed correctly. It is only defined, however in
Glenn L McGrath07085852003-10-09 07:28:22 +0000594 * ATA/ATAPI-5 & 6; it is reserved (value theoretically 0) in prior
Eric Andersen3443bd72003-07-22 07:30:36 +0000595 * standards. Since the values allowed for this word are extremely
596 * specific, it should be safe to check it now, even though we don't
597 * know yet what standard this device is using.
598 */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000599 if ((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL)
600 || (val[CONFIG]==PWRD_NID_VAL) || (val[CONFIG]==PWRD_ID_VAL)
601 ) {
Glenn L McGrath07085852003-10-09 07:28:22 +0000602 like_std = 5;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000603 if ((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL))
Rob Landleyadde7982006-05-16 15:32:30 +0000604 printf("powers-up in standby; SET FEATURES subcmd spins-up.\n");
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000605 if (((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==PWRD_NID_VAL)) && (val[GEN_CONFIG] & INCOMPLETE))
Rob Landleyadde7982006-05-16 15:32:30 +0000606 printf("\n\tWARNING: ID response incomplete.\n\tFollowing data may be incorrect.\n\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000607 }
608
609 /* output the model and serial numbers and the fw revision */
Glenn L McGrath07085852003-10-09 07:28:22 +0000610 xprint_ascii(val, START_MODEL, "Model Number:", LENGTH_MODEL);
611 xprint_ascii(val, START_SERIAL, "Serial Number:", LENGTH_SERIAL);
612 xprint_ascii(val, START_FW_REV, "Firmware Revision:", LENGTH_FW_REV);
613 xprint_ascii(val, START_MEDIA, "Media Serial Num:", LENGTH_MEDIA);
614 xprint_ascii(val, START_MANUF, "Media Manufacturer:", LENGTH_MANUF);
Eric Andersen3443bd72003-07-22 07:30:36 +0000615
616 /* major & minor standards version number (Note: these words were not
617 * defined until ATA-3 & the CDROM std uses different words.) */
618 printf("Standards:");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000619 if (eqpt != CDROM) {
620 if (val[MINOR] && (val[MINOR] <= MINOR_MAX)) {
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000621 if (like_std < 3) like_std = 3;
Eric Andersen3443bd72003-07-22 07:30:36 +0000622 std = actual_ver[val[MINOR]];
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000623 if (std) printf("\n\tUsed: %s ", minor_str[val[MINOR]]);
Glenn L McGrath07085852003-10-09 07:28:22 +0000624
Eric Andersen3443bd72003-07-22 07:30:36 +0000625 }
626 /* looks like when they up-issue the std, they obsolete one;
Glenn L McGrath07085852003-10-09 07:28:22 +0000627 * thus, only the newest 4 issues need be supported. (That's
Eric Andersen3443bd72003-07-22 07:30:36 +0000628 * what "kk" and "min_std" are all about.) */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000629 if (val[MAJOR] && (val[MAJOR] != NOVAL_1)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000630 printf("\n\tSupported: ");
631 jj = val[MAJOR] << 1;
632 kk = like_std >4 ? like_std-4: 0;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000633 for (ii = 14; (ii >0)&&(ii>kk); ii--) {
634 if (jj & 0x8000) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000635 printf("%u ", ii);
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000636 if (like_std < ii) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000637 like_std = ii;
638 kk = like_std >4 ? like_std-4: 0;
639 }
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000640 if (min_std > ii) min_std = ii;
Eric Andersen3443bd72003-07-22 07:30:36 +0000641 }
642 jj <<= 1;
643 }
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000644 if (like_std < 3) like_std = 3;
Eric Andersen3443bd72003-07-22 07:30:36 +0000645 }
646 /* Figure out what standard the device is using if it hasn't told
647 * us. If we know the std, check if the device is using any of
648 * the words from the next level up. It happens.
649 */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000650 if (like_std < std) like_std = std;
Glenn L McGrath07085852003-10-09 07:28:22 +0000651
Rob Landleya3e4f382006-04-29 16:06:31 +0000652 if (((std == 5) || (!std && (like_std < 6))) &&
Glenn L McGrath07085852003-10-09 07:28:22 +0000653 ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
654 (( val[CMDS_SUPP_1] & CMDS_W83) > 0x00ff)) ||
655 ((( val[CMDS_SUPP_2] & VALID) == VALID_VAL) &&
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000656 ( val[CMDS_SUPP_2] & CMDS_W84) ) )
657 ) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000658 like_std = 6;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000659 } else if (((std == 4) || (!std && (like_std < 5))) &&
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000660 ((((val[INTEGRITY] & SIG) == SIG_VAL) && !chksum) ||
Glenn L McGrath07085852003-10-09 07:28:22 +0000661 (( val[HWRST_RSLT] & VALID) == VALID_VAL) ||
662 ((( val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
663 (( val[CMDS_SUPP_1] & CMDS_W83) > 0x001f)) ) )
664 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000665 like_std = 5;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000666 } else if (((std == 3) || (!std && (like_std < 4))) &&
Glenn L McGrath07085852003-10-09 07:28:22 +0000667 ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
668 ((( val[CMDS_SUPP_1] & CMDS_W83) > 0x0000) ||
669 (( val[CMDS_SUPP_0] & CMDS_W82) > 0x000f))) ||
670 (( val[CAPAB_1] & VALID) == VALID_VAL) ||
671 (( val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA]) ||
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000672 (( val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP) )
673 ) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000674 like_std = 4;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000675 } else if (((std == 2) || (!std && (like_std < 3)))
676 && ((val[CMDS_SUPP_1] & VALID) == VALID_VAL)
677 ) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000678 like_std = 3;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000679 } else if (((std == 1) || (!std && (like_std < 2))) &&
Glenn L McGrath07085852003-10-09 07:28:22 +0000680 ((val[CAPAB_0] & (IORDY_SUP | IORDY_OFF)) ||
681 (val[WHATS_VALID] & OK_W64_70)) )
682 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000683 like_std = 2;
684 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000685
Rob Landleya3e4f382006-04-29 16:06:31 +0000686 if (!std)
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000687 printf("\n\tLikely used: %u\n", like_std);
Rob Landleya3e4f382006-04-29 16:06:31 +0000688 else if (like_std > std)
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000689 printf("& some of %u\n", like_std);
Glenn L McGrath07085852003-10-09 07:28:22 +0000690 else
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000691 puts("");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000692 } else {
Eric Andersen3443bd72003-07-22 07:30:36 +0000693 /* TBD: do CDROM stuff more thoroughly. For now... */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000694 kk = 0;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000695 if (val[CDR_MINOR] == 9) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000696 kk = 1;
697 printf("\n\tUsed: ATAPI for CD-ROMs, SFF-8020i, r2.5");
698 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000699 if (val[CDR_MAJOR] && (val[CDR_MAJOR] !=NOVAL_1)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000700 kk = 1;
701 printf("\n\tSupported: CD-ROM ATAPI");
702 jj = val[CDR_MAJOR] >> 1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000703 for (ii = 1; ii < 15; ii++) {
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000704 if (jj & 0x0001) printf("-%u ", ii);
Eric Andersen3443bd72003-07-22 07:30:36 +0000705 jj >>= 1;
706 }
707 }
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000708 printf("%s\n", kk ? "" : "\n\tLikely used CD-ROM ATAPI-1");
Eric Andersen3443bd72003-07-22 07:30:36 +0000709 /* the cdrom stuff is more like ATA-2 than anything else, so: */
710 like_std = 2;
711 }
712
Rob Landleya3e4f382006-04-29 16:06:31 +0000713 if (min_std == 0xffff)
Glenn L McGrath07085852003-10-09 07:28:22 +0000714 min_std = like_std > 4 ? like_std - 3 : 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000715
716 printf("Configuration:\n");
717 /* more info from the general configuration word */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000718 if ((eqpt != CDROM) && (like_std == 1)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000719 jj = val[GEN_CONFIG] >> 1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000720 for (ii = 1; ii < 15; ii++) {
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000721 if (jj & 0x0001)
722 printf("\t%s\n", ata1_cfg_str[ii]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000723 jj >>=1;
724 }
725 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000726 if (dev == ATAPI_DEV) {
Rob Landleyadde7982006-05-16 15:32:30 +0000727 if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_3MS_VAL)
728 strng = "3ms";
729 else if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_INTR_VAL)
730 strng = "<=10ms with INTRQ";
731 else if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_50US_VAL)
732 strng ="50us";
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000733 else
Rob Landleyadde7982006-05-16 15:32:30 +0000734 strng = "Unknown";
735 printf("\tDRQ response: %s\n\tPacket size: ", strng); /* Data Request (DRQ) */
736
737 if ((val[GEN_CONFIG] & PKT_SIZE_SUPPORTED) == PKT_SIZE_12_VAL)
738 strng = "12 bytes";
739 else if ((val[GEN_CONFIG] & PKT_SIZE_SUPPORTED) == PKT_SIZE_16_VAL)
740 strng = "16 bytes";
741 else
742 strng = "Unknown";
743 puts(strng);
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000744 } else {
Glenn L McGrath07085852003-10-09 07:28:22 +0000745 /* addressing...CHS? See section 6.2 of ATA specs 4 or 5 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000746 ll = (uint32_t)val[LBA_SECTS_MSB] << 16 | val[LBA_SECTS_LSB];
747 mm = 0; bbbig = 0;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000748 if ((ll > 0x00FBFC10) && (!val[LCYLS]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000749 printf("\tCHS addressing not supported\n");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000750 else {
Eric Andersen3443bd72003-07-22 07:30:36 +0000751 jj = val[WHATS_VALID] & OK_W54_58;
Glenn L McGrath07085852003-10-09 07:28:22 +0000752 printf("\tLogical\t\tmax\tcurrent\n\tcylinders\t%u\t%u\n\theads\t\t%u\t%u\n\tsectors/track\t%u\t%u\n\t--\n",
753 val[LCYLS],jj?val[LCYLS_CUR]:0, val[LHEADS],jj?val[LHEADS_CUR]:0, val[LSECTS],jj?val[LSECTS_CUR]:0);
754
Rob Landleyadde7982006-05-16 15:32:30 +0000755 if ((min_std == 1) && (val[TRACK_BYTES] || val[SECT_BYTES]))
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000756 printf("\tbytes/track: %u\tbytes/sector: %u\n", val[TRACK_BYTES], val[SECT_BYTES]);
Glenn L McGrath07085852003-10-09 07:28:22 +0000757
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000758 if (jj) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000759 mm = (uint32_t)val[CAPACITY_MSB] << 16 | val[CAPACITY_LSB];
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000760 if (like_std < 3) {
761 /* check Endian of capacity bytes */
Eric Andersen3443bd72003-07-22 07:30:36 +0000762 nn = val[LCYLS_CUR] * val[LHEADS_CUR] * val[LSECTS_CUR];
763 oo = (uint32_t)val[CAPACITY_LSB] << 16 | val[CAPACITY_MSB];
Rob Landleya3e4f382006-04-29 16:06:31 +0000764 if (abs(mm - nn) > abs(oo - nn))
Eric Andersen3443bd72003-07-22 07:30:36 +0000765 mm = oo;
766 }
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000767 printf("\tCHS current addressable sectors:%11u\n", mm);
Glenn L McGrath07085852003-10-09 07:28:22 +0000768 }
Eric Andersen3443bd72003-07-22 07:30:36 +0000769 }
770 /* LBA addressing */
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000771 printf("\tLBA user addressable sectors:%11u\n", ll);
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000772 if (((val[CMDS_SUPP_1] & VALID) == VALID_VAL)
773 && (val[CMDS_SUPP_1] & SUPPORT_48_BIT)
774 ) {
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +0000775 bbbig = (uint64_t)val[LBA_64_MSB] << 48 |
776 (uint64_t)val[LBA_48_MSB] << 32 |
777 (uint64_t)val[LBA_MID] << 16 |
Glenn L McGrath07085852003-10-09 07:28:22 +0000778 val[LBA_LSB] ;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000779 printf("\tLBA48 user addressable sectors:%11"PRIu64"\n", bbbig);
Eric Andersen3443bd72003-07-22 07:30:36 +0000780 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000781
782 if (!bbbig)
Rob Landley2e2d7522006-04-29 15:23:33 +0000783 bbbig = (uint64_t)(ll>mm ? ll : mm); /* # 512 byte blocks */
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000784 printf("\tdevice size with M = 1024*1024: %11"PRIu64" MBytes\n", bbbig>>11);
785 bbbig = (bbbig << 9) / 1000000;
786 printf("\tdevice size with M = 1000*1000: %11"PRIu64" MBytes ", bbbig);
Glenn L McGrath07085852003-10-09 07:28:22 +0000787
Rob Landleyadde7982006-05-16 15:32:30 +0000788 if (bbbig > 1000)
Rob Landley81dab2c2006-05-28 01:56:08 +0000789 printf("(%"PRIu64" GB)\n", bbbig/1000);
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000790 else
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000791 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000792 }
793
794 /* hw support of commands (capabilities) */
Glenn L McGrath07085852003-10-09 07:28:22 +0000795 printf("Capabilities:\n\t");
796
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000797 if (dev == ATAPI_DEV) {
Rob Landleyadde7982006-05-16 15:32:30 +0000798 if (eqpt != CDROM && (val[CAPAB_0] & CMD_Q_SUP)) printf("Cmd queuing, ");
799 if (val[CAPAB_0] & OVLP_SUP) printf("Cmd overlap, ");
Eric Andersen3443bd72003-07-22 07:30:36 +0000800 }
Rob Landleyadde7982006-05-16 15:32:30 +0000801 if (val[CAPAB_0] & LBA_SUP) printf("LBA, ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000802
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000803 if (like_std != 1) {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000804 printf("IORDY%s(can%s be disabled)\n",
805 !(val[CAPAB_0] & IORDY_SUP) ? "(may be)" : "",
Rob Landleyadde7982006-05-16 15:32:30 +0000806 (val[CAPAB_0] & IORDY_OFF) ? "" :"not");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000807 } else
Glenn L McGrath07085852003-10-09 07:28:22 +0000808 printf("no IORDY\n");
809
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000810 if ((like_std == 1) && val[BUF_TYPE]) {
Rob Landleyadde7982006-05-16 15:32:30 +0000811 printf("\tBuffer type: %04x: %s%s\n", val[BUF_TYPE],
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000812 (val[BUF_TYPE] < 2) ? "single port, single-sector" : "dual port, multi-sector",
Rob Landleyadde7982006-05-16 15:32:30 +0000813 (val[BUF_TYPE] > 2) ? " with read caching ability" : "");
Eric Andersen3443bd72003-07-22 07:30:36 +0000814 }
Rob Landleyadde7982006-05-16 15:32:30 +0000815
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000816 if ((min_std == 1) && (val[BUFFER__SIZE] && (val[BUFFER__SIZE] != NOVAL_1))) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000817 printf("\tBuffer size: %.1fkB\n", (float)val[BUFFER__SIZE]/2);
Eric Andersen3443bd72003-07-22 07:30:36 +0000818 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000819 if ((min_std < 4) && (val[RW_LONG])) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000820 printf("\tbytes avail on r/w long: %u\n", val[RW_LONG]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000821 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000822 if ((eqpt != CDROM) && (like_std > 3)) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000823 printf("\tQueue depth: %u\n", (val[QUEUE_DEPTH] & DEPTH_BITS) + 1);
Eric Andersen3443bd72003-07-22 07:30:36 +0000824 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000825
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000826 if (dev == ATA_DEV) {
Rob Landleya3e4f382006-04-29 16:06:31 +0000827 if (like_std == 1)
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000828 printf("\tCan%s perform double-word IO\n", (!val[DWORD_IO]) ? "not" : "");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000829 else {
Rob Landleyadde7982006-05-16 15:32:30 +0000830 printf("\tStandby timer values: spec'd by %s", (val[CAPAB_0] & STD_STBY) ? "Standard" : "Vendor");
Rob Landleya3e4f382006-04-29 16:06:31 +0000831 if ((like_std > 3) && ((val[CAPAB_1] & VALID) == VALID_VAL))
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000832 printf(", %s device specific minimum\n", (val[CAPAB_1] & MIN_STANDBY_TIMER) ? "with" : "no");
Glenn L McGrath07085852003-10-09 07:28:22 +0000833 else
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000834 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000835 }
836 printf("\tR/W multiple sector transfer: ");
Rob Landleya3e4f382006-04-29 16:06:31 +0000837 if ((like_std < 3) && !(val[SECTOR_XFER_MAX] & SECTOR_XFER))
Eric Andersen3443bd72003-07-22 07:30:36 +0000838 printf("not supported\n");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000839 else {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000840 printf("Max = %u\tCurrent = ", val[SECTOR_XFER_MAX] & SECTOR_XFER);
Rob Landleyadde7982006-05-16 15:32:30 +0000841 if (val[SECTOR_XFER_CUR] & MULTIPLE_SETTING_VALID)
842 printf("%u\n", val[SECTOR_XFER_CUR] & SECTOR_XFER);
843 else
844 printf("?\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000845 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000846 if ((like_std > 3) && (val[CMDS_SUPP_1] & 0x0008)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000847 /* We print out elsewhere whether the APM feature is enabled or
848 not. If it's not enabled, let's not repeat the info; just print
849 nothing here. */
Glenn L McGrath07085852003-10-09 07:28:22 +0000850 printf("\tAdvancedPM level: ");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000851 if ((val[ADV_PWR] & 0xFF00) == 0x4000) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000852 uint8_t apm_level = val[ADV_PWR] & 0x00FF;
Eric Andersen3443bd72003-07-22 07:30:36 +0000853 printf("%u (0x%x)\n", apm_level, apm_level);
Glenn L McGrath07085852003-10-09 07:28:22 +0000854 }
855 else
Eric Andersen3443bd72003-07-22 07:30:36 +0000856 printf("unknown setting (0x%04x)\n", val[ADV_PWR]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000857 }
Rob Landleyadde7982006-05-16 15:32:30 +0000858 if (like_std > 5 && val[ACOUSTIC]) {
859 printf("\tRecommended acoustic management value: %u, current value: %u\n",
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000860 (val[ACOUSTIC] >> 8) & 0x00ff, val[ACOUSTIC] & 0x00ff);
Eric Andersen3443bd72003-07-22 07:30:36 +0000861 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000862 } else {
Glenn L McGrath07085852003-10-09 07:28:22 +0000863 /* ATAPI */
Rob Landleyadde7982006-05-16 15:32:30 +0000864 if (eqpt != CDROM && (val[CAPAB_0] & SWRST_REQ))
865 printf("\tATA sw reset required\n");
Glenn L McGrath07085852003-10-09 07:28:22 +0000866
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000867 if (val[PKT_REL] || val[SVC_NBSY]) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000868 printf("\tOverlap support:");
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000869 if (val[PKT_REL]) printf(" %uus to release bus.", val[PKT_REL]);
870 if (val[SVC_NBSY]) printf(" %uus to clear BSY after SERVICE cmd.", val[SVC_NBSY]);
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000871 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000872 }
873 }
874
875 /* DMA stuff. Check that only one DMA mode is selected. */
876 printf("\tDMA: ");
Rob Landleya3e4f382006-04-29 16:06:31 +0000877 if (!(val[CAPAB_0] & DMA_SUP))
Eric Andersen3443bd72003-07-22 07:30:36 +0000878 printf("not supported\n");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000879 else {
Rob Landleyadde7982006-05-16 15:32:30 +0000880 if (val[DMA_MODE] && !val[SINGLE_DMA] && !val[MULTI_DMA])
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000881 printf(" sdma%u\n", (val[DMA_MODE] & MODE) >> 8);
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000882 if (val[SINGLE_DMA]) {
Glenn L McGrath07085852003-10-09 07:28:22 +0000883 jj = val[SINGLE_DMA];
884 kk = val[SINGLE_DMA] >> 8;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000885 err_dma += mode_loop(jj, kk, 's', &have_mode);
Eric Andersen3443bd72003-07-22 07:30:36 +0000886 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000887 if (val[MULTI_DMA]) {
Glenn L McGrath07085852003-10-09 07:28:22 +0000888 jj = val[MULTI_DMA];
889 kk = val[MULTI_DMA] >> 8;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000890 err_dma += mode_loop(jj, kk, 'm', &have_mode);
Eric Andersen3443bd72003-07-22 07:30:36 +0000891 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000892 if ((val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA]) {
Glenn L McGrath07085852003-10-09 07:28:22 +0000893 jj = val[ULTRA_DMA];
894 kk = val[ULTRA_DMA] >> 8;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000895 err_dma += mode_loop(jj, kk, 'u', &have_mode);
Eric Andersen3443bd72003-07-22 07:30:36 +0000896 }
Rob Landleyadde7982006-05-16 15:32:30 +0000897 if (err_dma || !have_mode) printf("(?)");
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000898 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000899
Rob Landleyadde7982006-05-16 15:32:30 +0000900 if ((dev == ATAPI_DEV) && (eqpt != CDROM) && (val[CAPAB_0] & DMA_IL_SUP))
901 printf("\t\tInterleaved DMA support\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000902
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000903 if ((val[WHATS_VALID] & OK_W64_70)
904 && (val[DMA_TIME_MIN] || val[DMA_TIME_NORM])
905 ) {
Rob Landleyadde7982006-05-16 15:32:30 +0000906 printf("\t\tCycle time:");
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000907 if (val[DMA_TIME_MIN]) printf(" min=%uns", val[DMA_TIME_MIN]);
908 if (val[DMA_TIME_NORM]) printf(" recommended=%uns", val[DMA_TIME_NORM]);
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000909 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000910 }
911 }
912
913 /* Programmed IO stuff */
914 printf("\tPIO: ");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000915 /* If a drive supports mode n (e.g. 3), it also supports all modes less
Eric Andersen3443bd72003-07-22 07:30:36 +0000916 * than n (e.g. 3, 2, 1 and 0). Print all the modes. */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000917 if ((val[WHATS_VALID] & OK_W64_70) && (val[ADV_PIO_MODES] & PIO_SUP)) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000918 jj = ((val[ADV_PIO_MODES] & PIO_SUP) << 3) | 0x0007;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000919 for (ii = 0; ii <= PIO_MODE_MAX ; ii++) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000920 if (jj & 0x0001) printf("pio%d ", ii);
Eric Andersen3443bd72003-07-22 07:30:36 +0000921 jj >>=1;
922 }
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000923 puts("");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000924 } else if (((min_std < 5) || (eqpt == CDROM)) && (val[PIO_MODE] & MODE)) {
Rob Landleya3e4f382006-04-29 16:06:31 +0000925 for (ii = 0; ii <= val[PIO_MODE]>>8; ii++)
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000926 printf("pio%d ", ii);
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000927 puts("");
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000928 } else
Glenn L McGrath07085852003-10-09 07:28:22 +0000929 printf("unknown\n");
930
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000931 if (val[WHATS_VALID] & OK_W64_70) {
932 if (val[PIO_NO_FLOW] || val[PIO_FLOW]) {
Rob Landleyadde7982006-05-16 15:32:30 +0000933 printf("\t\tCycle time:");
934 if (val[PIO_NO_FLOW]) printf(" no flow control=%uns", val[PIO_NO_FLOW]);
935 if (val[PIO_FLOW]) printf(" IORDY flow control=%uns", val[PIO_FLOW]);
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000936 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000937 }
938 }
939
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000940 if ((val[CMDS_SUPP_1] & VALID) == VALID_VAL) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000941 printf("Commands/features:\n\tEnabled\tSupported:\n");
942 jj = val[CMDS_SUPP_0];
943 kk = val[CMDS_EN_0];
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000944 for (ii = 0; ii < NUM_CMD_FEAT_STR; ii++) {
945 if ((jj & 0x8000) && (*cmd_feat_str[ii] != '\0')) {
Rob Landleyadde7982006-05-16 15:32:30 +0000946 printf("\t%s\t%s\n", (kk & 0x8000) ? " *" : "", cmd_feat_str[ii]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000947 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000948 jj <<= 1;
949 kk <<= 1;
950 if (ii % 16 == 15) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000951 jj = val[CMDS_SUPP_0+1+(ii/16)];
952 kk = val[CMDS_EN_0+1+(ii/16)];
953 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000954 if (ii == 31) {
Rob Landleya3e4f382006-04-29 16:06:31 +0000955 if ((val[CMDS_SUPP_2] & VALID) != VALID_VAL)
Glenn L McGrath07085852003-10-09 07:28:22 +0000956 ii +=16;
Eric Andersen3443bd72003-07-22 07:30:36 +0000957 }
958 }
959 }
Rob Landleyadde7982006-05-16 15:32:30 +0000960 /* Removable Media Status Notification feature set */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000961 if ((val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP)
Rob Landleyadde7982006-05-16 15:32:30 +0000962 printf("\t%s supported\n", cmd_feat_str[27]);
Glenn L McGrath07085852003-10-09 07:28:22 +0000963
Eric Andersen3443bd72003-07-22 07:30:36 +0000964 /* security */
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000965 if ((eqpt != CDROM) && (like_std > 3)
966 && (val[SECU_STATUS] || val[ERASE_TIME] || val[ENH_ERASE_TIME])
967 ) {
Rob Landleyade7f952006-05-25 18:53:06 +0000968 printf("Security:\n");
Rob Landleyadde7982006-05-16 15:32:30 +0000969 if (val[PSWD_CODE] && (val[PSWD_CODE] != NOVAL_1))
Denis Vlasenkof1ba7492007-03-28 00:14:01 +0000970 printf("\tMaster password revision code = %u\n", val[PSWD_CODE]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000971 jj = val[SECU_STATUS];
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000972 if (jj) {
973 for (ii = 0; ii < NUM_SECU_STR; ii++) {
Rob Landleyadde7982006-05-16 15:32:30 +0000974 printf("\t%s\t%s\n", (!(jj & 0x0001)) ? "not" : "", secu_str[ii]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000975 jj >>=1;
976 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000977 if (val[SECU_STATUS] & SECU_ENABLED) {
Rob Landleyadde7982006-05-16 15:32:30 +0000978 printf("\tSecurity level %s\n", (val[SECU_STATUS] & SECU_LEVEL) ? "maximum" : "high");
Eric Andersen3443bd72003-07-22 07:30:36 +0000979 }
980 }
981 jj = val[ERASE_TIME] & ERASE_BITS;
982 kk = val[ENH_ERASE_TIME] & ERASE_BITS;
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000983 if (jj || kk) {
Eric Andersen3443bd72003-07-22 07:30:36 +0000984 printf("\t");
Rob Landleyade7f952006-05-25 18:53:06 +0000985 if (jj) printf("%umin for %sSECURITY ERASE UNIT. ", jj==ERASE_BITS ? 508 : jj<<1, "");
986 if (kk) printf("%umin for %sSECURITY ERASE UNIT. ", kk==ERASE_BITS ? 508 : kk<<1, "ENHANCED ");
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000987 puts("");
Eric Andersen3443bd72003-07-22 07:30:36 +0000988 }
989 }
990
991 /* reset result */
Rob Landleyadde7982006-05-16 15:32:30 +0000992 jj = val[HWRST_RSLT];
Denis Vlasenko3bf00202007-02-18 13:36:04 +0000993 if ((jj & VALID) == VALID_VAL) {
Rob Landleyadde7982006-05-16 15:32:30 +0000994 if (!(oo = (jj & RST0)))
995 jj >>= 8;
Rob Landleya3e4f382006-04-29 16:06:31 +0000996 if ((jj & DEV_DET) == JUMPER_VAL)
Rob Landleyadde7982006-05-16 15:32:30 +0000997 strng = " determined by the jumper";
Rob Landleya3e4f382006-04-29 16:06:31 +0000998 else if ((jj & DEV_DET) == CSEL_VAL)
Rob Landleyadde7982006-05-16 15:32:30 +0000999 strng = " determined by CSEL";
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001000 else
Rob Landleyadde7982006-05-16 15:32:30 +00001001 strng = "";
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001002 printf("HW reset results:\n\tCBLID- %s Vih\n\tDevice num = %i%s\n",
Rob Landleyadde7982006-05-16 15:32:30 +00001003 (val[HWRST_RSLT] & CBLID) ? "above" : "below", !(oo), strng);
Eric Andersen3443bd72003-07-22 07:30:36 +00001004 }
1005
1006 /* more stuff from std 5 */
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001007 if ((like_std > 4) && (eqpt != CDROM)) {
1008 if (val[CFA_PWR_MODE] & VALID_W160) {
Rob Landleyadde7982006-05-16 15:32:30 +00001009 printf("CFA power mode 1:\n\t%s%s\n", (val[CFA_PWR_MODE] & PWR_MODE_OFF) ? "disabled" : "enabled",
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001010 (val[CFA_PWR_MODE] & PWR_MODE_REQ) ? " and required by some commands" : "");
Glenn L McGrath07085852003-10-09 07:28:22 +00001011
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001012 if (val[CFA_PWR_MODE] & MAX_AMPS)
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001013 printf("\tMaximum current = %uma\n", val[CFA_PWR_MODE] & MAX_AMPS);
Eric Andersen3443bd72003-07-22 07:30:36 +00001014 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001015 if ((val[INTEGRITY] & SIG) == SIG_VAL) {
Rob Landleyadde7982006-05-16 15:32:30 +00001016 printf("Checksum: %scorrect\n", chksum ? "in" : "");
Eric Andersen3443bd72003-07-22 07:30:36 +00001017 }
1018 }
1019
Rob Landleyadde7982006-05-16 15:32:30 +00001020 exit(EXIT_SUCCESS);
Eric Andersen3443bd72003-07-22 07:30:36 +00001021}
1022#endif
1023
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001024static smallint get_identity, get_geom;
1025static smallint do_flush;
1026static smallint do_ctimings, do_timings;
1027static smallint reread_partn;
1028
1029static smallint set_piomode, noisy_piomode;
1030static smallint set_readahead, get_readahead;
1031static smallint set_readonly, get_readonly;
1032static smallint set_unmask, get_unmask;
1033static smallint set_mult, get_mult;
1034static smallint set_dma_q, get_dma_q;
1035static smallint set_nowerr, get_nowerr;
1036static smallint set_keep, get_keep;
1037static smallint set_io32bit, get_io32bit;
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001038static int piomode;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001039static unsigned long Xreadahead;
1040static unsigned long readonly;
1041static unsigned long unmask;
1042static unsigned long mult;
1043static unsigned long dma_q;
1044static unsigned long nowerr;
1045static unsigned long keep;
1046static unsigned long io32bit;
1047#if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA
1048static unsigned long dma;
1049static smallint set_dma, get_dma;
1050#endif
Eric Andersen3443bd72003-07-22 07:30:36 +00001051#ifdef HDIO_DRIVE_CMD
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001052static smallint set_xfermode, get_xfermode;
1053static smallint set_dkeep, get_dkeep;
1054static smallint set_standby, get_standby;
1055static smallint set_lookahead, get_lookahead;
1056static smallint set_prefetch, get_prefetch;
1057static smallint set_defects, get_defects;
1058static smallint set_wcache, get_wcache;
1059static smallint set_doorlock, get_doorlock;
1060static smallint set_seagate, get_seagate;
1061static smallint set_standbynow, get_standbynow;
1062static smallint set_sleepnow, get_sleepnow;
1063static smallint get_powermode;
1064static smallint set_apmmode, get_apmmode;
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001065static int xfermode_requested;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001066static unsigned long dkeep;
1067static unsigned long standby_requested;
1068static unsigned long lookahead;
1069static unsigned long prefetch;
1070static unsigned long defects;
1071static unsigned long wcache;
1072static unsigned long doorlock;
1073static unsigned long apmmode;
Eric Andersen3443bd72003-07-22 07:30:36 +00001074#endif
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001075USE_FEATURE_HDPARM_GET_IDENTITY( static smallint get_IDentity;)
1076USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static smallint set_busstate, get_busstate;)
1077USE_FEATURE_HDPARM_HDIO_DRIVE_RESET( static smallint perform_reset;)
1078USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static smallint perform_tristate;)
1079USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(static smallint unregister_hwif;)
1080USE_FEATURE_HDPARM_HDIO_SCAN_HWIF( static smallint scan_hwif;)
1081USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static unsigned long busstate;)
1082USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static unsigned long tristate;)
1083USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(static unsigned long hwif;)
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001084#if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF
Rob Landley20deab02006-05-07 23:34:15 +00001085static unsigned long hwif_data;
1086static unsigned long hwif_ctrl;
1087static unsigned long hwif_irq;
Eric Andersen3443bd72003-07-22 07:30:36 +00001088#endif
Eric Andersen3443bd72003-07-22 07:30:36 +00001089
1090// Historically, if there was no HDIO_OBSOLETE_IDENTITY, then
1091// then the HDIO_GET_IDENTITY only returned 142 bytes.
1092// Otherwise, HDIO_OBSOLETE_IDENTITY returns 142 bytes,
1093// and HDIO_GET_IDENTITY returns 512 bytes. But the latest
1094// 2.5.xx kernels no longer define HDIO_OBSOLETE_IDENTITY
1095// (which they should, but they should just return -EINVAL).
1096//
1097// So.. we must now assume that HDIO_GET_IDENTITY returns 512 bytes.
1098// On a really old system, it will not, and we will be confused.
1099// Too bad, really.
1100
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001101#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001102static const char * const cfg_str[] =
Rob Landleyadde7982006-05-16 15:32:30 +00001103{ "", "HardSect", "SoftSect", "NotMFM",
1104 "HdSw>15uSec", "SpinMotCtl", "Fixed", "Removeable",
1105 "DTR<=5Mbs", "DTR>5Mbs", "DTR>10Mbs", "RotSpdTol>.5%",
1106 "dStbOff", "TrkOff", "FmtGapReq", "nonMagnetic"
Eric Andersen3443bd72003-07-22 07:30:36 +00001107};
1108
Rob Landleyadde7982006-05-16 15:32:30 +00001109static const char * const BuffType[] = {"Unknown", "1Sect", "DualPort", "DualPortCache"};
Eric Andersen3443bd72003-07-22 07:30:36 +00001110
Rob Landleya3e4f382006-04-29 16:06:31 +00001111static void dump_identity(const struct hd_driveid *id)
Eric Andersen3443bd72003-07-22 07:30:36 +00001112{
1113 int i;
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001114 const unsigned short int *id_regs = (const void*) id;
Rob Landley0a7c8ef2006-02-22 17:01:00 +00001115
Glenn L McGrath07085852003-10-09 07:28:22 +00001116 printf("\n Model=%.40s, FwRev=%.8s, SerialNo=%.20s\n Config={",
1117 id->model, id->fw_rev, id->serial_no);
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001118 for (i = 0; i <= 15; i++) {
Rob Landleyade7f952006-05-25 18:53:06 +00001119 if (id->config & (1<<i))
1120 printf(" %s", cfg_str[i]);
Rob Landleyadde7982006-05-16 15:32:30 +00001121 }
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001122 printf(" }\n RawCHS=%u/%u/%u, TrkSize=%u, SectSize=%u, ECCbytes=%u\n"
Rob Landleyadde7982006-05-16 15:32:30 +00001123 " BuffType=(%u) %s, BuffSize=%ukB, MaxMultSect=%u",
Glenn L McGrath07085852003-10-09 07:28:22 +00001124 id->cyls, id->heads, id->sectors, id->track_bytes,
Rob Landleyadde7982006-05-16 15:32:30 +00001125 id->sector_bytes, id->ecc_bytes,
1126 id->buf_type, BuffType[(id->buf_type > 3) ? 0 : id->buf_type],
1127 id->buf_size/2, id->max_multsect);
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001128 if (id->max_multsect) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001129 printf(", MultSect=");
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001130 if (!(id->multsect_valid & 1))
Eric Andersen3443bd72003-07-22 07:30:36 +00001131 printf("?%u?", id->multsect);
1132 else if (id->multsect)
1133 printf("%u", id->multsect);
1134 else
1135 printf("off");
1136 }
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +00001137 puts("");
Rob Landleyade7f952006-05-25 18:53:06 +00001138
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001139 if (!(id->field_valid & 1))
Rob Landleyade7f952006-05-25 18:53:06 +00001140 printf(" (maybe):");
1141
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001142 printf(" CurCHS=%u/%u/%u, CurSects=%lu, LBA=%s", id->cur_cyls, id->cur_heads,
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001143 id->cur_sectors,
1144 (BB_BIG_ENDIAN) ?
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001145 (unsigned long)(id->cur_capacity0 << 16) | id->cur_capacity1 :
1146 (unsigned long)(id->cur_capacity1 << 16) | id->cur_capacity0,
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001147 ((id->capability&2) == 0) ? "no" : "yes");
Rob Landleyade7f952006-05-25 18:53:06 +00001148
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001149 if (id->capability & 2)
Rob Landleyade7f952006-05-25 18:53:06 +00001150 printf(", LBAsects=%u", id->lba_capacity);
1151
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001152 printf("\n IORDY=%s", (id->capability & 8) ? (id->capability & 4) ? "on/off" : "yes" : "no");
Rob Landleyade7f952006-05-25 18:53:06 +00001153
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001154 if (((id->capability & 8) || (id->field_valid & 2)) && (id->field_valid & 2))
Rob Landleyade7f952006-05-25 18:53:06 +00001155 printf(", tPIO={min:%u,w/IORDY:%u}", id->eide_pio, id->eide_pio_iordy);
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001156
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001157 if ((id->capability & 1) && (id->field_valid & 2))
Rob Landleyade7f952006-05-25 18:53:06 +00001158 printf(", tDMA={min:%u,rec:%u}", id->eide_dma_min, id->eide_dma_time);
1159
1160 printf("\n PIO modes: ");
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001161 if (id->tPIO <= 5) {
Rob Landleyade7f952006-05-25 18:53:06 +00001162 printf("pio0 ");
1163 if (id->tPIO >= 1) printf("pio1 ");
1164 if (id->tPIO >= 2) printf("pio2 ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001165 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001166 if (id->field_valid & 2) {
Rob Landleyade7f952006-05-25 18:53:06 +00001167 if (id->eide_pio_modes & 1) printf("pio3 ");
1168 if (id->eide_pio_modes & 2) printf("pio4 ");
1169 if (id->eide_pio_modes &~3) printf("pio? ");
1170 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001171 if (id->capability & 1) {
1172 if (id->dma_1word | id->dma_mword) {
Rob Landleyade7f952006-05-25 18:53:06 +00001173 printf("\n DMA modes: ");
1174 if (id->dma_1word & 0x100) printf("*");
1175 if (id->dma_1word & 1) printf("sdma0 ");
1176 if (id->dma_1word & 0x200) printf("*");
1177 if (id->dma_1word & 2) printf("sdma1 ");
1178 if (id->dma_1word & 0x400) printf("*");
1179 if (id->dma_1word & 4) printf("sdma2 ");
1180 if (id->dma_1word & 0xf800) printf("*");
1181 if (id->dma_1word & 0xf8) printf("sdma? ");
1182 if (id->dma_mword & 0x100) printf("*");
1183 if (id->dma_mword & 1) printf("mdma0 ");
1184 if (id->dma_mword & 0x200) printf("*");
1185 if (id->dma_mword & 2) printf("mdma1 ");
1186 if (id->dma_mword & 0x400) printf("*");
1187 if (id->dma_mword & 4) printf("mdma2 ");
1188 if (id->dma_mword & 0xf800) printf("*");
1189 if (id->dma_mword & 0xf8) printf("mdma? ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001190 }
1191 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001192 if (((id->capability & 8) || (id->field_valid & 2)) && id->field_valid & 4) {
Rob Landleyade7f952006-05-25 18:53:06 +00001193 printf("\n UDMA modes: ");
1194 if (id->dma_ultra & 0x100) printf("*");
1195 if (id->dma_ultra & 0x001) printf("udma0 ");
1196 if (id->dma_ultra & 0x200) printf("*");
1197 if (id->dma_ultra & 0x002) printf("udma1 ");
1198 if (id->dma_ultra & 0x400) printf("*");
1199 if (id->dma_ultra & 0x004) printf("udma2 ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001200#ifdef __NEW_HD_DRIVE_ID
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001201 if (id->hw_config & 0x2000) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001202#else /* !__NEW_HD_DRIVE_ID */
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001203 if (id->word93 & 0x2000) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001204#endif /* __NEW_HD_DRIVE_ID */
Rob Landleyade7f952006-05-25 18:53:06 +00001205 if (id->dma_ultra & 0x0800) printf("*");
1206 if (id->dma_ultra & 0x0008) printf("udma3 ");
1207 if (id->dma_ultra & 0x1000) printf("*");
1208 if (id->dma_ultra & 0x0010) printf("udma4 ");
1209 if (id->dma_ultra & 0x2000) printf("*");
1210 if (id->dma_ultra & 0x0020) printf("udma5 ");
1211 if (id->dma_ultra & 0x4000) printf("*");
1212 if (id->dma_ultra & 0x0040) printf("udma6 ");
1213 if (id->dma_ultra & 0x8000) printf("*");
1214 if (id->dma_ultra & 0x0080) printf("udma7 ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001215 }
1216 }
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001217 printf("\n AdvancedPM=%s", (!(id_regs[83] & 8)) ? "no" : "yes");
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001218 if (id_regs[83] & 8) {
1219 if (!(id_regs[86] & 8))
Glenn L McGrath07085852003-10-09 07:28:22 +00001220 printf(": disabled (255)");
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001221 else if ((id_regs[91] & 0xFF00) != 0x4000)
Glenn L McGrath07085852003-10-09 07:28:22 +00001222 printf(": unknown setting");
1223 else
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001224 printf(": mode=0x%02X (%u)", id_regs[91] & 0xFF, id_regs[91] & 0xFF);
Glenn L McGrath07085852003-10-09 07:28:22 +00001225 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001226 if (id_regs[82] & 0x20)
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001227 printf(" WriteCache=%s", (id_regs[85] & 0x20) ? "enabled" : "disabled");
Glenn L McGrath07085852003-10-09 07:28:22 +00001228#ifdef __NEW_HD_DRIVE_ID
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001229 if ((id->minor_rev_num && id->minor_rev_num <= 31)
1230 || (id->major_rev_num && id->minor_rev_num <= 31)
1231 ) {
Rob Landleyadde7982006-05-16 15:32:30 +00001232 printf("\n Drive conforms to: %s: ", (id->minor_rev_num <= 31) ? minor_str[id->minor_rev_num] : "Unknown");
Rob Landley026147a2006-04-17 22:29:13 +00001233 if (id->major_rev_num != 0x0000 && /* NOVAL_0 */
1234 id->major_rev_num != 0xFFFF) { /* NOVAL_1 */
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001235 for (i = 0; i <= 15; i++) {
Rob Landleyadde7982006-05-16 15:32:30 +00001236 if (id->major_rev_num & (1<<i))
1237 printf(" ATA/ATAPI-%u", i);
1238 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001239 }
1240 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001241#endif /* __NEW_HD_DRIVE_ID */
Rob Landleyade7f952006-05-25 18:53:06 +00001242 printf("\n\n * current active mode\n\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001243}
1244#endif
1245
Rob Landleya3e4f382006-04-29 16:06:31 +00001246static void flush_buffer_cache(int fd)
Eric Andersen3443bd72003-07-22 07:30:36 +00001247{
Rob Landleya3e4f382006-04-29 16:06:31 +00001248 fsync(fd); /* flush buffers */
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001249 bb_ioctl(fd, BLKFLSBUF, NULL, "BLKFLSBUF") ;/* do it again, big time */
Eric Andersen3443bd72003-07-22 07:30:36 +00001250#ifdef HDIO_DRIVE_CMD
Glenn L McGrath07085852003-10-09 07:28:22 +00001251 sleep(1);
1252 if (ioctl(fd, HDIO_DRIVE_CMD, NULL) && errno != EINVAL) /* await completion */
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001253 bb_perror_msg("HDIO_DRIVE_CMD");
Eric Andersen3443bd72003-07-22 07:30:36 +00001254#endif
1255}
1256
Rob Landleya3e4f382006-04-29 16:06:31 +00001257static int seek_to_zero(int fd)
Eric Andersen3443bd72003-07-22 07:30:36 +00001258{
Glenn L McGrath07085852003-10-09 07:28:22 +00001259 if (lseek(fd, (off_t) 0, SEEK_SET))
Eric Andersen3443bd72003-07-22 07:30:36 +00001260 return 1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001261 return 0;
1262}
1263
Rob Landleya3e4f382006-04-29 16:06:31 +00001264static int read_big_block(int fd, char *buf)
Eric Andersen3443bd72003-07-22 07:30:36 +00001265{
Rob Landleyadde7982006-05-16 15:32:30 +00001266 int i;
1267
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001268 i = read(fd, buf, TIMING_BUF_BYTES);
1269 if (i != TIMING_BUF_BYTES) {
Rob Landleyadde7982006-05-16 15:32:30 +00001270 bb_error_msg("read(%d bytes) failed (rc=%d)", TIMING_BUF_BYTES, i);
Eric Andersen3443bd72003-07-22 07:30:36 +00001271 return 1;
1272 }
1273 /* access all sectors of buf to ensure the read fully completed */
1274 for (i = 0; i < TIMING_BUF_BYTES; i += 512)
1275 buf[i] &= 1;
1276 return 0;
1277}
1278
Rob Landleyadde7982006-05-16 15:32:30 +00001279static void print_timing(int t, double e)
1280{
1281 if (t >= e) /* more than 1MB/s */
Rob Landleyade7f952006-05-25 18:53:06 +00001282 printf("%2d MB in %5.2f seconds =%6.2f %cB/sec\n", t, e, t / e, 'M');
Rob Landleyadde7982006-05-16 15:32:30 +00001283 else
Rob Landleyade7f952006-05-25 18:53:06 +00001284 printf("%2d MB in %5.2f seconds =%6.2f %cB/sec\n", t, e, t / e * 1024, 'k');
Rob Landleyadde7982006-05-16 15:32:30 +00001285}
1286
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001287static int do_blkgetsize(int fd, unsigned long long *blksize64)
Rob Landleyadde7982006-05-16 15:32:30 +00001288{
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001289 int rc;
1290 unsigned blksize32 = 0;
Rob Landleyadde7982006-05-16 15:32:30 +00001291
1292 if (0 == ioctl(fd, BLKGETSIZE64, blksize64)) { // returns bytes
1293 *blksize64 /= 512;
1294 return 0;
1295 }
1296 rc = ioctl(fd, BLKGETSIZE, &blksize32); // returns sectors
1297 if (rc)
1298 bb_perror_msg("BLKGETSIZE");
1299 *blksize64 = blksize32;
1300 return rc;
1301}
Eric Andersen50af12d2003-08-06 08:47:59 +00001302
Rob Landleya3e4f382006-04-29 16:06:31 +00001303static void do_time(int flag, int fd)
Glenn L McGrath07085852003-10-09 07:28:22 +00001304/*
1305 flag = 0 time_cache
1306 flag = 1 time_device
1307*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001308{
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001309 static const struct itimerval thousand = {{1000, 0}, {1000, 0}};
1310
Eric Andersen3443bd72003-07-22 07:30:36 +00001311 struct itimerval e1, e2;
Rob Landleyadde7982006-05-16 15:32:30 +00001312 double elapsed, elapsed2;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001313 unsigned max_iterations = 1024, total_MB, iterations;
Rob Landleyadde7982006-05-16 15:32:30 +00001314 unsigned long long blksize;
Rob Landley4ae2f512006-05-19 17:24:26 +00001315 RESERVE_CONFIG_BUFFER(buf, TIMING_BUF_BYTES);
1316
1317 if (mlock(buf, TIMING_BUF_BYTES)) {
1318 bb_perror_msg("mlock");
1319 goto quit2;
1320 }
Rob Landleyadde7982006-05-16 15:32:30 +00001321
1322 if (0 == do_blkgetsize(fd, &blksize)) {
1323 max_iterations = blksize / (2 * 1024) / TIMING_BUF_MB;
1324 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001325
Eric Andersen3443bd72003-07-22 07:30:36 +00001326 /* Clear out the device request queues & give them time to complete */
Rob Landleyadde7982006-05-16 15:32:30 +00001327 sync();
1328 sleep(3);
1329
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001330 setitimer(ITIMER_REAL, &thousand, NULL);
Eric Andersen3443bd72003-07-22 07:30:36 +00001331
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001332 if (flag == 0) {
1333 /* Time cache */
1334
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001335 if (seek_to_zero(fd)) return;
1336 if (read_big_block(fd, buf)) return;
Rob Landleyadde7982006-05-16 15:32:30 +00001337 printf(" Timing cached reads: ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001338 fflush(stdout);
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001339
Rob Landleyadde7982006-05-16 15:32:30 +00001340 /* Now do the timing */
1341 iterations = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +00001342 getitimer(ITIMER_REAL, &e1);
Rob Landleyadde7982006-05-16 15:32:30 +00001343 do {
1344 ++iterations;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001345 if (seek_to_zero(fd) || read_big_block(fd, buf))
Glenn L McGrath07085852003-10-09 07:28:22 +00001346 goto quit;
Rob Landleyadde7982006-05-16 15:32:30 +00001347 getitimer(ITIMER_REAL, &e2);
1348 elapsed = (e1.it_value.tv_sec - e2.it_value.tv_sec)
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001349 + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
Rob Landleyadde7982006-05-16 15:32:30 +00001350 } while (elapsed < 2.0);
1351 total_MB = iterations * TIMING_BUF_MB;
Rob Landleyade7f952006-05-25 18:53:06 +00001352
Rob Landleyadde7982006-05-16 15:32:30 +00001353 /* Now remove the lseek() and getitimer() overheads from the elapsed time */
1354 getitimer(ITIMER_REAL, &e1);
1355 do {
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001356 if (seek_to_zero(fd))
Rob Landleyadde7982006-05-16 15:32:30 +00001357 goto quit;
1358 getitimer(ITIMER_REAL, &e2);
1359 elapsed2 = (e1.it_value.tv_sec - e2.it_value.tv_sec)
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001360 + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
Rob Landleyadde7982006-05-16 15:32:30 +00001361 } while (--iterations);
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001362
Rob Landleyadde7982006-05-16 15:32:30 +00001363 elapsed -= elapsed2;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001364 print_timing(BUFCACHE_FACTOR * total_MB, elapsed);
Glenn L McGrath07085852003-10-09 07:28:22 +00001365 flush_buffer_cache(fd);
1366 sleep(1);
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001367 } else {
1368 /* Time device */
1369
Glenn L McGrath07085852003-10-09 07:28:22 +00001370 printf(" Timing buffered disk reads: ");
1371 fflush(stdout);
Glenn L McGrath07085852003-10-09 07:28:22 +00001372 /*
1373 * getitimer() is used rather than gettimeofday() because
1374 * it is much more consistent (on my machine, at least).
1375 */
Glenn L McGrath07085852003-10-09 07:28:22 +00001376 /* Now do the timings for real */
Rob Landleyadde7982006-05-16 15:32:30 +00001377 iterations = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +00001378 getitimer(ITIMER_REAL, &e1);
Rob Landleyadde7982006-05-16 15:32:30 +00001379 do {
1380 ++iterations;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001381 if (read_big_block(fd, buf))
Glenn L McGrath07085852003-10-09 07:28:22 +00001382 goto quit;
Rob Landleyadde7982006-05-16 15:32:30 +00001383 getitimer(ITIMER_REAL, &e2);
1384 elapsed = (e1.it_value.tv_sec - e2.it_value.tv_sec)
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001385 + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
Rob Landleyadde7982006-05-16 15:32:30 +00001386 } while (elapsed < 3.0 && iterations < max_iterations);
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001387
Rob Landleyadde7982006-05-16 15:32:30 +00001388 total_MB = iterations * TIMING_BUF_MB;
1389 print_timing(total_MB, elapsed);
Glenn L McGrath07085852003-10-09 07:28:22 +00001390 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001391quit:
Rob Landley4ae2f512006-05-19 17:24:26 +00001392 munlock(buf, TIMING_BUF_BYTES);
1393quit2:
1394 RELEASE_CONFIG_BUFFER(buf);
Eric Andersen3443bd72003-07-22 07:30:36 +00001395}
1396
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001397#if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001398static void bus_state_value(unsigned value)
Eric Andersen3443bd72003-07-22 07:30:36 +00001399{
Rob Landleyadde7982006-05-16 15:32:30 +00001400 if (value == BUSSTATE_ON)
1401 on_off(1);
1402 else if (value == BUSSTATE_OFF)
1403 on_off(0);
1404 else if (value == BUSSTATE_TRISTATE)
1405 printf(" (tristate)\n");
1406 else
1407 printf(" (unknown: %d)\n", value);
Eric Andersen3443bd72003-07-22 07:30:36 +00001408}
1409#endif
1410
1411#ifdef HDIO_DRIVE_CMD
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001412static void interpret_standby(unsigned standby)
Eric Andersen3443bd72003-07-22 07:30:36 +00001413{
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001414 unsigned t;
Rob Landleyadde7982006-05-16 15:32:30 +00001415
Rob Landley403777f2006-08-03 20:22:37 +00001416 printf(" (");
Rob Landleyadde7982006-05-16 15:32:30 +00001417 if (standby == 0)
1418 printf("off");
1419 else if (standby == 252)
1420 printf("21 minutes");
1421 else if (standby == 253)
1422 printf("vendor-specific");
1423 else if (standby == 254)
1424 printf("Reserved");
1425 else if (standby == 255)
1426 printf("21 minutes + 15 seconds");
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001427 else if (standby <= 240) {
1428 t = standby * 5;
1429 printf("%u minutes + %u seconds", t / 60, t % 60);
1430 } else if (standby <= 251) {
1431 t = (standby - 240) * 30;
1432 printf("%u hours + %u minutes", t / 60, t % 60);
1433 } else
1434 printf("illegal value");
Eric Andersen3443bd72003-07-22 07:30:36 +00001435 printf(")\n");
1436}
1437
1438struct xfermode_entry {
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001439 int val;
1440 const char *name;
Eric Andersen3443bd72003-07-22 07:30:36 +00001441};
1442
1443static const struct xfermode_entry xfermode_table[] = {
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001444 { 8, "pio0" },
1445 { 9, "pio1" },
1446 { 10, "pio2" },
1447 { 11, "pio3" },
1448 { 12, "pio4" },
1449 { 13, "pio5" },
1450 { 14, "pio6" },
1451 { 15, "pio7" },
1452 { 16, "sdma0" },
1453 { 17, "sdma1" },
1454 { 18, "sdma2" },
1455 { 19, "sdma3" },
1456 { 20, "sdma4" },
1457 { 21, "sdma5" },
1458 { 22, "sdma6" },
1459 { 23, "sdma7" },
1460 { 32, "mdma0" },
1461 { 33, "mdma1" },
1462 { 34, "mdma2" },
1463 { 35, "mdma3" },
1464 { 36, "mdma4" },
1465 { 37, "mdma5" },
1466 { 38, "mdma6" },
1467 { 39, "mdma7" },
1468 { 64, "udma0" },
1469 { 65, "udma1" },
1470 { 66, "udma2" },
1471 { 67, "udma3" },
1472 { 68, "udma4" },
1473 { 69, "udma5" },
1474 { 70, "udma6" },
1475 { 71, "udma7" },
1476 { 0, NULL }
Eric Andersen3443bd72003-07-22 07:30:36 +00001477};
1478
1479static int translate_xfermode(char * name)
1480{
Glenn L McGrath07085852003-10-09 07:28:22 +00001481 const struct xfermode_entry *tmp;
1482 char *endptr;
1483 int val = -1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001484
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001485 for (tmp = xfermode_table; tmp->name != NULL; ++tmp) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001486 if (!strcmp(name, tmp->name))
1487 return tmp->val;
Glenn L McGrath07085852003-10-09 07:28:22 +00001488 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001489
Glenn L McGrath07085852003-10-09 07:28:22 +00001490 val = strtol(name, &endptr, 10);
1491 if (*endptr == '\0')
1492 return val;
1493
1494 return -1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001495}
1496
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001497static void interpret_xfermode(unsigned xfermode)
Eric Andersen3443bd72003-07-22 07:30:36 +00001498{
1499 printf(" (");
Rob Landleyadde7982006-05-16 15:32:30 +00001500 if (xfermode == 0)
1501 printf("default PIO mode");
1502 else if (xfermode == 1)
1503 printf("default PIO mode, disable IORDY");
1504 else if (xfermode >= 8 && xfermode <= 15)
1505 printf("PIO flow control mode%u", xfermode-8);
1506 else if (xfermode >= 16 && xfermode <= 23)
1507 printf("singleword DMA mode%u", xfermode-16);
1508 else if (xfermode >= 32 && xfermode <= 39)
1509 printf("multiword DMA mode%u", xfermode-32);
1510 else if (xfermode >= 64 && xfermode <= 71)
1511 printf("UltraDMA mode%u", xfermode-64);
1512 else
1513 printf("Unknown");
Eric Andersen3443bd72003-07-22 07:30:36 +00001514 printf(")\n");
1515}
1516#endif /* HDIO_DRIVE_CMD */
1517
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001518static void print_flag(int flag, const char *s, unsigned long value)
Rob Landleyadde7982006-05-16 15:32:30 +00001519{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001520 if (flag)
Rob Landleyadde7982006-05-16 15:32:30 +00001521 printf(" setting %s to %ld\n", s, value);
1522}
1523
Rob Landleya3e4f382006-04-29 16:06:31 +00001524static void process_dev(char *devname)
Eric Andersen3443bd72003-07-22 07:30:36 +00001525{
1526 int fd;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001527 long parm, multcount;
Eric Andersen3443bd72003-07-22 07:30:36 +00001528#ifndef HDIO_DRIVE_CMD
1529 int force_operation = 0;
1530#endif
Rob Landley39cf6452006-05-05 16:52:28 +00001531 /* Please restore args[n] to these values after each ioctl
1532 except for args[2] */
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001533 unsigned char args[4] = { WIN_SETFEATURES, 0, 0, 0 };
Rob Landleyadde7982006-05-16 15:32:30 +00001534 const char *fmt = " %s\t= %2ld";
Rob Landleye5b281f2006-04-29 15:49:18 +00001535
Rob Landleyd921b2e2006-08-03 15:41:12 +00001536 fd = xopen(devname, O_RDONLY|O_NONBLOCK);
Rob Landleyade7f952006-05-25 18:53:06 +00001537 printf("\n%s:\n", devname);
Eric Andersen3443bd72003-07-22 07:30:36 +00001538
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001539 if (set_readahead) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001540 print_flag(get_readahead, "fs readahead", Xreadahead);
1541 bb_ioctl(fd, BLKRASET, (int *)Xreadahead, "BLKRASET");
Eric Andersen3443bd72003-07-22 07:30:36 +00001542 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001543#if ENABLE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
1544 if (unregister_hwif) {
Rob Landley20deab02006-05-07 23:34:15 +00001545 printf(" attempting to unregister hwif#%lu\n", hwif);
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001546 bb_ioctl(fd, HDIO_UNREGISTER_HWIF, (int *)(unsigned long)hwif, "HDIO_UNREGISTER_HWIF");
Eric Andersen3443bd72003-07-22 07:30:36 +00001547 }
1548#endif
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001549#if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF
1550 if (scan_hwif) {
Rob Landley20deab02006-05-07 23:34:15 +00001551 printf(" attempting to scan hwif (0x%lx, 0x%lx, %lu)\n", hwif_data, hwif_ctrl, hwif_irq);
Eric Andersen3443bd72003-07-22 07:30:36 +00001552 args[0] = hwif_data;
1553 args[1] = hwif_ctrl;
1554 args[2] = hwif_irq;
Glenn L McGrath07085852003-10-09 07:28:22 +00001555 bb_ioctl(fd, HDIO_SCAN_HWIF, args, "HDIO_SCAN_HWIF");
Rob Landley39cf6452006-05-05 16:52:28 +00001556 args[0] = WIN_SETFEATURES;
1557 args[1] = 0;
Eric Andersen3443bd72003-07-22 07:30:36 +00001558 }
1559#endif
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001560 if (set_piomode) {
1561 if (noisy_piomode) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001562 printf(" attempting to ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001563 if (piomode == 255)
Glenn L McGrath07085852003-10-09 07:28:22 +00001564 printf("auto-tune PIO mode\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001565 else if (piomode < 100)
Glenn L McGrath07085852003-10-09 07:28:22 +00001566 printf("set PIO mode to %d\n", piomode);
Eric Andersen3443bd72003-07-22 07:30:36 +00001567 else if (piomode < 200)
Glenn L McGrath07085852003-10-09 07:28:22 +00001568 printf("set MDMA mode to %d\n", (piomode-100));
Eric Andersen3443bd72003-07-22 07:30:36 +00001569 else
Glenn L McGrath07085852003-10-09 07:28:22 +00001570 printf("set UDMA mode to %d\n", (piomode-200));
Eric Andersen3443bd72003-07-22 07:30:36 +00001571 }
Eric Andersena68ea1c2006-01-30 22:48:39 +00001572 bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)(unsigned long)piomode, "HDIO_SET_PIO_MODE");
Eric Andersen3443bd72003-07-22 07:30:36 +00001573 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001574 if (set_io32bit) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001575 print_flag(get_io32bit, "32-bit IO_support flag", io32bit);
Glenn L McGrath07085852003-10-09 07:28:22 +00001576 bb_ioctl(fd, HDIO_SET_32BIT, (int *)io32bit, "HDIO_SET_32BIT");
Eric Andersen3443bd72003-07-22 07:30:36 +00001577 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001578 if (set_mult) {
Rob Landleyadde7982006-05-16 15:32:30 +00001579 print_flag(get_mult, "multcount", mult);
Rob Landleyade7f952006-05-25 18:53:06 +00001580#ifdef HDIO_DRIVE_CMD
Denis Vlasenkoae47cd12007-03-31 10:30:02 +00001581 bb_ioctl(fd, HDIO_SET_MULTCOUNT, (void *)mult, "HDIO_SET_MULTCOUNT");
Rob Landleyade7f952006-05-25 18:53:06 +00001582#else
Denis Vlasenkoae47cd12007-03-31 10:30:02 +00001583 force_operation |= (!bb_ioctl(fd, HDIO_SET_MULTCOUNT, (void *)mult, "HDIO_SET_MULTCOUNT"));
Eric Andersen3443bd72003-07-22 07:30:36 +00001584#endif
1585 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001586 if (set_readonly) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001587 print_flag_on_off(get_readonly, "readonly", readonly);
Glenn L McGrath07085852003-10-09 07:28:22 +00001588 bb_ioctl(fd, BLKROSET, &readonly, "BLKROSET");
Eric Andersen3443bd72003-07-22 07:30:36 +00001589 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001590 if (set_unmask) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001591 print_flag_on_off(get_unmask, "unmaskirq", unmask);
Glenn L McGrath07085852003-10-09 07:28:22 +00001592 bb_ioctl(fd, HDIO_SET_UNMASKINTR, (int *)unmask, "HDIO_SET_UNMASKINTR");
Eric Andersen3443bd72003-07-22 07:30:36 +00001593 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001594#if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA
1595 if (set_dma) {
Rob Landleyadde7982006-05-16 15:32:30 +00001596 print_flag_on_off(get_dma, "using_dma", dma);
Glenn L McGrath07085852003-10-09 07:28:22 +00001597 bb_ioctl(fd, HDIO_SET_DMA, (int *)dma, "HDIO_SET_DMA");
Eric Andersen3443bd72003-07-22 07:30:36 +00001598 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001599#endif /* FEATURE_HDPARM_HDIO_GETSET_DMA */
1600 if (set_dma_q) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001601 print_flag_on_off(get_dma_q, "DMA queue_depth", dma_q);
Glenn L McGrath07085852003-10-09 07:28:22 +00001602 bb_ioctl(fd, HDIO_SET_QDMA, (int *)dma_q, "HDIO_SET_QDMA");
Eric Andersen3443bd72003-07-22 07:30:36 +00001603 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001604 if (set_nowerr) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001605 print_flag_on_off(get_nowerr, "nowerr", nowerr);
1606 bb_ioctl(fd, HDIO_SET_NOWERR, (int *)nowerr, "HDIO_SET_NOWERR");
Eric Andersen3443bd72003-07-22 07:30:36 +00001607 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001608 if (set_keep) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001609 print_flag_on_off(get_keep, "keep_settings", keep);
1610 bb_ioctl(fd, HDIO_SET_KEEPSETTINGS, (int *)keep, "HDIO_SET_KEEPSETTINGS");
Eric Andersen3443bd72003-07-22 07:30:36 +00001611 }
1612#ifdef HDIO_DRIVE_CMD
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001613 if (set_doorlock) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001614 args[0] = doorlock ? WIN_DOORLOCK : WIN_DOORUNLOCK;
Rob Landley39cf6452006-05-05 16:52:28 +00001615 args[2] = 0;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001616 print_flag_on_off(get_doorlock, "drive doorlock", doorlock);
1617 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(doorlock)");
Rob Landley39cf6452006-05-05 16:52:28 +00001618 args[0] = WIN_SETFEATURES;
Eric Andersen3443bd72003-07-22 07:30:36 +00001619 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001620 if (set_dkeep) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001621 /* lock/unlock the drive's "feature" settings */
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001622 print_flag_on_off(get_dkeep, "drive keep features", dkeep);
Eric Andersen3443bd72003-07-22 07:30:36 +00001623 args[2] = dkeep ? 0x66 : 0xcc;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001624 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(keepsettings)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001625 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001626 if (set_defects) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001627 args[2] = defects ? 0x04 : 0x84;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001628 print_flag(get_defects, "drive defect-mgmt", defects);
1629 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(defectmgmt)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001630 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001631 if (set_prefetch) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001632 args[1] = prefetch;
Rob Landleye5b281f2006-04-29 15:49:18 +00001633 args[2] = 0xab;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001634 print_flag(get_prefetch, "drive prefetch", prefetch);
Glenn L McGrath07085852003-10-09 07:28:22 +00001635 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setprefetch)");
Rob Landley39cf6452006-05-05 16:52:28 +00001636 args[1] = 0;
Eric Andersen3443bd72003-07-22 07:30:36 +00001637 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001638 if (set_xfermode) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001639 args[1] = xfermode_requested;
Rob Landleye5b281f2006-04-29 15:49:18 +00001640 args[2] = 3;
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001641 if (get_xfermode) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001642 print_flag(1, "xfermode", xfermode_requested);
Eric Andersen3443bd72003-07-22 07:30:36 +00001643 interpret_xfermode(xfermode_requested);
1644 }
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001645 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setxfermode)");
Rob Landley39cf6452006-05-05 16:52:28 +00001646 args[1] = 0;
Eric Andersen3443bd72003-07-22 07:30:36 +00001647 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001648 if (set_lookahead) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001649 args[2] = lookahead ? 0xaa : 0x55;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001650 print_flag_on_off(get_lookahead, "drive read-lookahead", lookahead);
Glenn L McGrath07085852003-10-09 07:28:22 +00001651 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setreadahead)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001652 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001653 if (set_apmmode) {
Rob Landleyadde7982006-05-16 15:32:30 +00001654 args[2] = (apmmode == 255) ? 0x85 /* disable */ : 0x05 /* set */; /* feature register */
1655 args[1] = apmmode; /* sector count register 1-255 */
1656 if (get_apmmode)
1657 printf(" setting APM level to %s 0x%02lX (%ld)\n", (apmmode == 255) ? "disabled" : "", apmmode, apmmode);
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001658 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD");
Rob Landley39cf6452006-05-05 16:52:28 +00001659 args[1] = 0;
Eric Andersen3443bd72003-07-22 07:30:36 +00001660 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001661 if (set_wcache) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001662#ifdef DO_FLUSHCACHE
1663#ifndef WIN_FLUSHCACHE
1664#define WIN_FLUSHCACHE 0xe7
1665#endif
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001666 static unsigned char flushcache[4] = { WIN_FLUSHCACHE, 0, 0, 0 };
Eric Andersen3443bd72003-07-22 07:30:36 +00001667#endif /* DO_FLUSHCACHE */
Eric Andersen3443bd72003-07-22 07:30:36 +00001668 args[2] = wcache ? 0x02 : 0x82;
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001669 print_flag_on_off(get_wcache, "drive write-caching", wcache);
Eric Andersen3443bd72003-07-22 07:30:36 +00001670#ifdef DO_FLUSHCACHE
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001671 if (!wcache)
1672 bb_ioctl(fd, HDIO_DRIVE_CMD, &flushcache, "HDIO_DRIVE_CMD(flushcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001673#endif /* DO_FLUSHCACHE */
Glenn L McGrath07085852003-10-09 07:28:22 +00001674 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001675#ifdef DO_FLUSHCACHE
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001676 if (!wcache)
1677 bb_ioctl(fd, HDIO_DRIVE_CMD, &flushcache, "HDIO_DRIVE_CMD(flushcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001678#endif /* DO_FLUSHCACHE */
1679 }
Rob Landley39cf6452006-05-05 16:52:28 +00001680
1681 /* In code below, we do not preserve args[0], but the rest
1682 is preserved, including args[2] */
1683 args[2] = 0;
1684
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001685 if (set_standbynow) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001686#ifndef WIN_STANDBYNOW1
1687#define WIN_STANDBYNOW1 0xE0
1688#endif
1689#ifndef WIN_STANDBYNOW2
1690#define WIN_STANDBYNOW2 0x94
1691#endif
Rob Landleyadde7982006-05-16 15:32:30 +00001692 if (get_standbynow) printf(" issuing standby command\n");
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001693 args[0] = WIN_STANDBYNOW1;
1694 bb_ioctl_alt(fd, HDIO_DRIVE_CMD, args, WIN_STANDBYNOW2, "HDIO_DRIVE_CMD(standby)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001695 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001696 if (set_sleepnow) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001697#ifndef WIN_SLEEPNOW1
1698#define WIN_SLEEPNOW1 0xE6
1699#endif
1700#ifndef WIN_SLEEPNOW2
1701#define WIN_SLEEPNOW2 0x99
1702#endif
Rob Landleyadde7982006-05-16 15:32:30 +00001703 if (get_sleepnow) printf(" issuing sleep command\n");
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001704 args[0] = WIN_SLEEPNOW1;
1705 bb_ioctl_alt(fd, HDIO_DRIVE_CMD, args, WIN_SLEEPNOW2, "HDIO_DRIVE_CMD(sleep)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001706 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001707 if (set_seagate) {
Rob Landleye5b281f2006-04-29 15:49:18 +00001708 args[0] = 0xfb;
Rob Landleyadde7982006-05-16 15:32:30 +00001709 if (get_seagate) printf(" disabling Seagate auto powersaving mode\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001710 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(seagatepwrsave)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001711 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001712 if (set_standby) {
Rob Landleye5b281f2006-04-29 15:49:18 +00001713 args[0] = WIN_SETIDLE1;
1714 args[1] = standby_requested;
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001715 if (get_standby) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001716 print_flag(1, "standby", standby_requested);
Eric Andersen3443bd72003-07-22 07:30:36 +00001717 interpret_standby(standby_requested);
1718 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001719 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setidle1)");
Rob Landley39cf6452006-05-05 16:52:28 +00001720 args[1] = 0;
Eric Andersen3443bd72003-07-22 07:30:36 +00001721 }
1722#else /* HDIO_DRIVE_CMD */
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001723 if (force_operation) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001724 char buf[512];
1725 flush_buffer_cache(fd);
1726 if (-1 == read(fd, buf, sizeof(buf)))
Rob Landleyadde7982006-05-16 15:32:30 +00001727 bb_perror_msg("read(%d bytes) failed (rc=%d)", sizeof(buf), -1);
Eric Andersen3443bd72003-07-22 07:30:36 +00001728 }
1729#endif /* HDIO_DRIVE_CMD */
1730
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001731 if (get_mult || get_identity) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001732 multcount = -1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001733 if (ioctl(fd, HDIO_GET_MULTCOUNT, &multcount)) {
Rob Landleyade7f952006-05-25 18:53:06 +00001734 if (get_mult)
Eric Andersen06d4ec22004-03-19 10:53:52 +00001735 bb_perror_msg("HDIO_GET_MULTCOUNT");
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001736 } else if (get_mult) {
Rob Landleyadde7982006-05-16 15:32:30 +00001737 printf(fmt, "multcount", multcount);
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001738 on_off(multcount != 0);
Eric Andersen3443bd72003-07-22 07:30:36 +00001739 }
1740 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001741 if (get_io32bit) {
1742 if (!bb_ioctl(fd, HDIO_GET_32BIT, &parm, "HDIO_GET_32BIT")) {
Rob Landleyadde7982006-05-16 15:32:30 +00001743 printf(" IO_support\t=%3ld (", parm);
1744 if (parm == 0)
1745 printf("default 16-bit)\n");
1746 else if (parm == 2)
1747 printf("16-bit)\n");
1748 else if (parm == 1)
1749 printf("32-bit)\n");
1750 else if (parm == 3)
1751 printf("32-bit w/sync)\n");
1752 else if (parm == 8)
1753 printf("Request-Queue-Bypass)\n");
1754 else
1755 printf("\?\?\?)\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001756 }
1757 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001758 if (get_unmask) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001759 bb_ioctl_on_off(fd, HDIO_GET_UNMASKINTR, (unsigned long *)parm,
1760 "HDIO_GET_UNMASKINTR", "unmaskirq");
Eric Andersen3443bd72003-07-22 07:30:36 +00001761 }
1762
Glenn L McGrath07085852003-10-09 07:28:22 +00001763
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001764#if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA
Rob Landleyade7f952006-05-25 18:53:06 +00001765 if (get_dma) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001766 if (!bb_ioctl(fd, HDIO_GET_DMA, &parm, "HDIO_GET_DMA")) {
Rob Landleyadde7982006-05-16 15:32:30 +00001767 printf(fmt, "using_dma", parm);
Eric Andersen3443bd72003-07-22 07:30:36 +00001768 if (parm == 8)
1769 printf(" (DMA-Assisted-PIO)\n");
1770 else
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001771 on_off(parm != 0);
Eric Andersen3443bd72003-07-22 07:30:36 +00001772 }
1773 }
1774#endif
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001775 if (get_dma_q) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001776 bb_ioctl_on_off(fd, HDIO_GET_QDMA, (unsigned long *)parm,
1777 "HDIO_GET_QDMA", "queue_depth");
Eric Andersen3443bd72003-07-22 07:30:36 +00001778 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001779 if (get_keep) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001780 bb_ioctl_on_off(fd, HDIO_GET_KEEPSETTINGS, (unsigned long *)parm,
1781 "HDIO_GET_KEEPSETTINGS", "keepsettings");
Eric Andersen3443bd72003-07-22 07:30:36 +00001782 }
1783
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001784 if (get_nowerr) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001785 bb_ioctl_on_off(fd, HDIO_GET_NOWERR, (unsigned long *)&parm,
1786 "HDIO_GET_NOWERR", "nowerr");
Eric Andersen3443bd72003-07-22 07:30:36 +00001787 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001788 if (get_readonly) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001789 bb_ioctl_on_off(fd, BLKROGET, (unsigned long *)parm,
1790 "BLKROGET", "readonly");
Eric Andersen3443bd72003-07-22 07:30:36 +00001791 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001792 if (get_readahead) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001793 bb_ioctl_on_off(fd, BLKRAGET, (unsigned long *) parm,
1794 "BLKRAGET", "readahead");
Eric Andersen3443bd72003-07-22 07:30:36 +00001795 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001796 if (get_geom) {
1797 if (!bb_ioctl(fd, BLKGETSIZE, &parm, "BLKGETSIZE")) {
Rob Landley2584e9b2006-05-03 20:00:00 +00001798 struct hd_geometry g;
1799
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001800 if (!bb_ioctl(fd, HDIO_GETGEO, &g, "HDIO_GETGEO"))
Rob Landleyadde7982006-05-16 15:32:30 +00001801 printf(" geometry\t= %u/%u/%u, sectors = %ld, start = %ld\n",
Rob Landley2584e9b2006-05-03 20:00:00 +00001802 g.cylinders, g.heads, g.sectors, parm, g.start);
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001803 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001804 }
1805#ifdef HDIO_DRIVE_CMD
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001806 if (get_powermode) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001807#ifndef WIN_CHECKPOWERMODE1
1808#define WIN_CHECKPOWERMODE1 0xE5
1809#endif
1810#ifndef WIN_CHECKPOWERMODE2
1811#define WIN_CHECKPOWERMODE2 0x98
1812#endif
Eric Andersen3443bd72003-07-22 07:30:36 +00001813 const char *state;
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001814
Rob Landleye5b281f2006-04-29 15:49:18 +00001815 args[0] = WIN_CHECKPOWERMODE1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001816 if (bb_ioctl_alt(fd, HDIO_DRIVE_CMD, args, WIN_CHECKPOWERMODE2, 0)) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001817 if (errno != EIO || args[0] != 0 || args[1] != 0)
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001818 state = "unknown";
Eric Andersen3443bd72003-07-22 07:30:36 +00001819 else
1820 state = "sleeping";
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001821 } else
Glenn L McGrath07085852003-10-09 07:28:22 +00001822 state = (args[2] == 255) ? "active/idle" : "standby";
Rob Landley39cf6452006-05-05 16:52:28 +00001823 args[1] = args[2] = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +00001824
Eric Andersen3443bd72003-07-22 07:30:36 +00001825 printf(" drive state is: %s\n", state);
1826 }
1827#endif
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001828#if ENABLE_FEATURE_HDPARM_HDIO_DRIVE_RESET
1829 if (perform_reset) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001830 bb_ioctl(fd, HDIO_DRIVE_RESET, NULL, "HDIO_DRIVE_RESET");
Eric Andersen3443bd72003-07-22 07:30:36 +00001831 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001832#endif /* FEATURE_HDPARM_HDIO_DRIVE_RESET */
1833#if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
1834 if (perform_tristate) {
Rob Landleye5b281f2006-04-29 15:49:18 +00001835 args[0] = 0;
1836 args[1] = tristate;
Glenn L McGrath07085852003-10-09 07:28:22 +00001837 bb_ioctl(fd, HDIO_TRISTATE_HWIF, &args, "HDIO_TRISTATE_HWIF");
Eric Andersen3443bd72003-07-22 07:30:36 +00001838 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001839#endif /* FEATURE_HDPARM_HDIO_TRISTATE_HWIF */
1840#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
1841 if (get_identity) {
Denis Vlasenko7c282a22007-03-28 00:14:54 +00001842 struct hd_driveid id;
Eric Andersen3443bd72003-07-22 07:30:36 +00001843
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001844 if (!ioctl(fd, HDIO_GET_IDENTITY, &id)) {
1845 if (multcount != -1) {
Eric Andersen3443bd72003-07-22 07:30:36 +00001846 id.multsect = multcount;
1847 id.multsect_valid |= 1;
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001848 } else
Eric Andersen3443bd72003-07-22 07:30:36 +00001849 id.multsect_valid &= ~1;
1850 dump_identity(&id);
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001851 } else if (errno == -ENOMSG)
Eric Andersen3443bd72003-07-22 07:30:36 +00001852 printf(" no identification info available\n");
1853 else
Eric Andersen06d4ec22004-03-19 10:53:52 +00001854 bb_perror_msg("HDIO_GET_IDENTITY");
Eric Andersen3443bd72003-07-22 07:30:36 +00001855 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001856
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001857 if (get_IDentity) {
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001858 unsigned char args1[4+512]; /* = { ... } will eat 0.5k of rodata! */
Glenn L McGrath07085852003-10-09 07:28:22 +00001859
Rob Landley5f8b5ec2006-04-29 16:03:40 +00001860 memset(args1, 0, sizeof(args1));
1861 args1[0] = WIN_IDENTIFY;
1862 args1[3] = 1;
Rob Landley0753f4a2006-06-07 00:27:25 +00001863 if (!bb_ioctl_alt(fd, HDIO_DRIVE_CMD, args1, WIN_PIDENTIFY, "HDIO_DRIVE_CMD(identify)"))
1864 identify((void *)(args1 + 4));
Eric Andersen3443bd72003-07-22 07:30:36 +00001865 }
1866#endif
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001867#if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
1868 if (set_busstate) {
1869 if (get_busstate) {
Rob Landleyadde7982006-05-16 15:32:30 +00001870 print_flag(1, "bus state", busstate);
Eric Andersen3443bd72003-07-22 07:30:36 +00001871 bus_state_value(busstate);
1872 }
Eric Andersena68ea1c2006-01-30 22:48:39 +00001873 bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)(unsigned long)busstate, "HDIO_SET_BUSSTATE");
Eric Andersen3443bd72003-07-22 07:30:36 +00001874 }
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001875 if (get_busstate) {
1876 if (!bb_ioctl(fd, HDIO_GET_BUSSTATE, &parm, "HDIO_GET_BUSSTATE")) {
Rob Landleyadde7982006-05-16 15:32:30 +00001877 printf(fmt, "bus state", parm);
Eric Andersen3443bd72003-07-22 07:30:36 +00001878 bus_state_value(parm);
1879 }
1880 }
1881#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001882 if (reread_partn)
1883 bb_ioctl(fd, BLKRRPART, NULL, "BLKRRPART");
1884
Eric Andersen3443bd72003-07-22 07:30:36 +00001885 if (do_ctimings)
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001886 do_time(0, fd); /* time cache */
Eric Andersen3443bd72003-07-22 07:30:36 +00001887 if (do_timings)
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001888 do_time(1, fd); /* time device */
Eric Andersen3443bd72003-07-22 07:30:36 +00001889 if (do_flush)
Rob Landleya3e4f382006-04-29 16:06:31 +00001890 flush_buffer_cache(fd);
1891 close(fd);
Eric Andersen3443bd72003-07-22 07:30:36 +00001892}
1893
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001894#if ENABLE_FEATURE_HDPARM_GET_IDENTITY
Rob Landleya3e4f382006-04-29 16:06:31 +00001895static int fromhex(unsigned char c)
Eric Andersen3443bd72003-07-22 07:30:36 +00001896{
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +00001897 if (isdigit(c))
Eric Andersen3443bd72003-07-22 07:30:36 +00001898 return (c - '0');
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +00001899 if (c >= 'a' && c <= 'f')
1900 return (c - ('a' - 10));
Eric Andersen3443bd72003-07-22 07:30:36 +00001901 bb_error_msg_and_die("bad char: '%c' 0x%02x", c, c);
1902}
1903
Rob Landley0f0b6452006-05-03 18:28:06 +00001904static void identify_from_stdin(void)
Eric Andersen3443bd72003-07-22 07:30:36 +00001905{
Rob Landley0753f4a2006-06-07 00:27:25 +00001906 uint16_t sbuf[256];
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +00001907 unsigned char buf[1280];
1908 unsigned char *b = (unsigned char *)buf;
1909 int i;
Eric Andersen3443bd72003-07-22 07:30:36 +00001910
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +00001911 xread(0, buf, 1280);
Rob Landleyade7f952006-05-25 18:53:06 +00001912
Rob Landley0753f4a2006-06-07 00:27:25 +00001913 // Convert the newline-separated hex data into an identify block.
1914
Denis Vlasenko3bf00202007-02-18 13:36:04 +00001915 for (i = 0; i < 256; i++) {
Rob Landley0753f4a2006-06-07 00:27:25 +00001916 int j;
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001917 for (j = 0; j < 4; j++)
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +00001918 sbuf[i] = (sbuf[i] << 4) + fromhex(*(b++));
Eric Andersen3443bd72003-07-22 07:30:36 +00001919 }
Rob Landley0753f4a2006-06-07 00:27:25 +00001920
1921 // Parse the data.
1922
Rob Landley6389ff12006-05-01 19:28:53 +00001923 identify(sbuf);
Eric Andersen3443bd72003-07-22 07:30:36 +00001924}
1925#endif
1926
Rob Landley20deab02006-05-07 23:34:15 +00001927/* busybox specific stuff */
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001928static void parse_opts(smallint *get, smallint *set, unsigned long *value, int min, int max)
Eric Andersenb2aa7762004-04-05 13:08:08 +00001929{
Denis Vlasenko6429aab2006-09-23 12:22:11 +00001930 if (get) {
1931 *get = 1;
1932 }
1933 if (optarg) {
1934 *set = 1;
Denis Vlasenko13858992006-10-08 12:49:22 +00001935 *value = xatol_range(optarg, min, max);
Denis Vlasenko6429aab2006-09-23 12:22:11 +00001936 }
Rob Landley20deab02006-05-07 23:34:15 +00001937}
1938
Denis Vlasenko0eec4ab2007-03-28 01:00:45 +00001939static void parse_xfermode(int flag, smallint *get, smallint *set, int *value)
Rob Landley20deab02006-05-07 23:34:15 +00001940{
1941 if (flag) {
Rob Landleyade7f952006-05-25 18:53:06 +00001942 *get = 1;
Rob Landley20deab02006-05-07 23:34:15 +00001943 if (optarg) {
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001944 *value = translate_xfermode(optarg);
1945 *set = (*value > -1);
Rob Landley20deab02006-05-07 23:34:15 +00001946 }
1947 }
1948}
1949
Rob Landley06208412006-05-31 22:52:57 +00001950/*------- getopt short options --------*/
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001951static const char hdparm_options[] = "gfu::n::p:r::m::c::k::a::B:tTh"
Rob Landley06208412006-05-31 22:52:57 +00001952 USE_FEATURE_HDPARM_GET_IDENTITY("iI")
Rob Landley20deab02006-05-07 23:34:15 +00001953 USE_FEATURE_HDPARM_HDIO_GETSET_DMA("d::")
1954#ifdef HDIO_DRIVE_CMD
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001955 "S:D:P:X:K:A:L:W:CyYzZ"
Rob Landley20deab02006-05-07 23:34:15 +00001956#endif
1957 USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF("U:")
1958#ifdef HDIO_GET_QDMA
1959#ifdef HDIO_SET_QDMA
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001960 "Q:"
Rob Landley20deab02006-05-07 23:34:15 +00001961#else
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001962 "Q"
Rob Landley20deab02006-05-07 23:34:15 +00001963#endif
1964#endif
1965 USE_FEATURE_HDPARM_HDIO_DRIVE_RESET("w")
1966 USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF("x::b:")
1967 USE_FEATURE_HDPARM_HDIO_SCAN_HWIF("R:");
1968/*-------------------------------------*/
1969
1970/* our main() routine: */
Denis Vlasenko06af2162007-02-03 17:28:39 +00001971int hdparm_main(int argc, char **argv);
Rob Landley20deab02006-05-07 23:34:15 +00001972int hdparm_main(int argc, char **argv)
1973{
1974 int c;
Rob Landleyade7f952006-05-25 18:53:06 +00001975 int flagcount = 0;
Rob Landley20deab02006-05-07 23:34:15 +00001976
Rob Landley06208412006-05-31 22:52:57 +00001977 while ((c = getopt(argc, argv, hdparm_options)) >= 0) {
Rob Landley20deab02006-05-07 23:34:15 +00001978 flagcount++;
Rob Landley06208412006-05-31 22:52:57 +00001979 if (c == 'h') bb_show_usage(); /* EXIT */
Mike Frysingerea93f8a2006-06-07 14:25:22 +00001980 USE_FEATURE_HDPARM_GET_IDENTITY(get_IDentity |= (c == 'I'));
1981 USE_FEATURE_HDPARM_GET_IDENTITY(get_identity |= (c == 'i'));
Rob Landleyadde7982006-05-16 15:32:30 +00001982 get_geom |= (c == 'g');
1983 do_flush |= (c == 'f');
Rob Landley19802562006-05-08 15:35:46 +00001984 if (c == 'u') parse_opts(&get_unmask, &set_unmask, &unmask, 0, 1);
1985 USE_FEATURE_HDPARM_HDIO_GETSET_DMA(if (c == 'd') parse_opts(&get_dma, &set_dma, &dma, 0, 9));
1986 if (c == 'n') parse_opts(&get_nowerr, &set_nowerr, &nowerr, 0, 1);
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00001987 parse_xfermode((c == 'p'), &noisy_piomode, &set_piomode, &piomode);
Rob Landley19802562006-05-08 15:35:46 +00001988 if (c == 'r') parse_opts(&get_readonly, &set_readonly, &readonly, 0, 1);
1989 if (c == 'm') parse_opts(&get_mult, &set_mult, &mult, 0, INT_MAX /*32*/);
1990 if (c == 'c') parse_opts(&get_io32bit, &set_io32bit, &io32bit, 0, INT_MAX /*8*/);
1991 if (c == 'k') parse_opts(&get_keep, &set_keep, &keep, 0, 1);
1992 if (c == 'a') parse_opts(&get_readahead, &set_readahead, &Xreadahead, 0, INT_MAX);
1993 if (c == 'B') parse_opts(&get_apmmode, &set_apmmode, &apmmode, 1, 255);
Rob Landleyadde7982006-05-16 15:32:30 +00001994 do_flush |= do_timings |= (c == 't');
1995 do_flush |= do_ctimings |= (c == 'T');
Rob Landley20deab02006-05-07 23:34:15 +00001996#ifdef HDIO_DRIVE_CMD
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001997 if (c == 'S') parse_opts(&get_standby, &set_standby, &standby_requested, 0, INT_MAX);
Rob Landley19802562006-05-08 15:35:46 +00001998 if (c == 'D') parse_opts(&get_defects, &set_defects, &defects, 0, INT_MAX);
1999 if (c == 'P') parse_opts(&get_prefetch, &set_prefetch, &prefetch, 0, INT_MAX);
Rob Landleyade7f952006-05-25 18:53:06 +00002000 parse_xfermode((c == 'X'), &get_xfermode, &set_xfermode, &xfermode_requested);
Rob Landley19802562006-05-08 15:35:46 +00002001 if (c == 'K') parse_opts(&get_dkeep, &set_dkeep, &prefetch, 0, 1);
2002 if (c == 'A') parse_opts(&get_lookahead, &set_lookahead, &lookahead, 0, 1);
2003 if (c == 'L') parse_opts(&get_doorlock, &set_doorlock, &doorlock, 0, 1);
2004 if (c == 'W') parse_opts(&get_wcache, &set_wcache, &wcache, 0, 1);
Rob Landleyade7f952006-05-25 18:53:06 +00002005 get_powermode |= (c == 'C');
2006 get_standbynow = set_standbynow |= (c == 'y');
2007 get_sleepnow = set_sleepnow |= (c == 'Y');
Rob Landleyadde7982006-05-16 15:32:30 +00002008 reread_partn |= (c == 'z');
Rob Landleyade7f952006-05-25 18:53:06 +00002009 get_seagate = set_seagate |= (c == 'Z');
Rob Landley20deab02006-05-07 23:34:15 +00002010#endif
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00002011 USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(if (c == 'U') parse_opts(NULL, &unregister_hwif, &hwif, 0, INT_MAX));
Rob Landley20deab02006-05-07 23:34:15 +00002012#ifdef HDIO_GET_QDMA
Rob Landley19802562006-05-08 15:35:46 +00002013 if (c == 'Q') {
Rob Landley20deab02006-05-07 23:34:15 +00002014#ifdef HDIO_SET_QDMA
Rob Landley19802562006-05-08 15:35:46 +00002015 parse_opts(&get_dma_q, &set_dma_q, &dma_q, 0, INT_MAX);
Rob Landley20deab02006-05-07 23:34:15 +00002016#else
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00002017 parse_opts(&get_dma_q, NULL, NULL, 0, 0);
Rob Landley20deab02006-05-07 23:34:15 +00002018#endif
Rob Landley19802562006-05-08 15:35:46 +00002019 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00002020#endif
Rob Landleyade7f952006-05-25 18:53:06 +00002021 USE_FEATURE_HDPARM_HDIO_DRIVE_RESET(perform_reset = (c == 'r'));
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00002022 USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF(if (c == 'x') parse_opts(NULL, &perform_tristate, &tristate, 0, 1));
2023 USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF(if (c == 'b') parse_opts(&get_busstate, &set_busstate, &busstate, 0, 2));
Rob Landley20deab02006-05-07 23:34:15 +00002024#if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF
2025 if (c == 'R') {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00002026 parse_opts(NULL, &scan_hwif, &hwif_data, 0, INT_MAX);
Denis Vlasenko13858992006-10-08 12:49:22 +00002027 hwif_ctrl = xatoi_u((argv[optind]) ? argv[optind] : "");
2028 hwif_irq = xatoi_u((argv[optind+1]) ? argv[optind+1] : "");
Rob Landley20deab02006-05-07 23:34:15 +00002029 /* Move past the 2 additional arguments */
2030 argv += 2;
2031 argc -= 2;
2032 }
2033#endif
2034 }
Rob Landleyade7f952006-05-25 18:53:06 +00002035 /* When no flags are given (flagcount = 0), -acdgkmnru is assumed. */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002036 if (!flagcount) {
Rob Landleyade7f952006-05-25 18:53:06 +00002037 get_mult = get_io32bit = get_unmask = get_keep = get_readonly = get_readahead = get_geom = 1;
2038 USE_FEATURE_HDPARM_HDIO_GETSET_DMA(get_dma = 1);
2039 }
Rob Landley20deab02006-05-07 23:34:15 +00002040 argv += optind;
2041
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00002042 if (!*argv) {
Rob Landley6d8ce172006-06-07 21:22:42 +00002043 if (ENABLE_FEATURE_HDPARM_GET_IDENTITY && !isatty(STDIN_FILENO))
2044 identify_from_stdin(); /* EXIT */
2045 else bb_show_usage();
Rob Landley20deab02006-05-07 23:34:15 +00002046 }
2047
Denis Vlasenkof1ba7492007-03-28 00:14:01 +00002048 do {
2049 process_dev(*argv++);
2050 } while (*argv);
2051
2052 return EXIT_SUCCESS;
Eric Andersen3443bd72003-07-22 07:30:36 +00002053}