blob: bd3065d7e1edda4deb540787e2bd4eb02c73b38e [file] [log] [blame]
Eric Andersen3443bd72003-07-22 07:30:36 +00001/* vi: set sw=4 ts=4: */
2/*
3 * hdparm implementation for busybox
4 *
5 *
Glenn L McGrath5be6a202003-11-28 22:55:03 +00006 * Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>
Glenn L McGrath07085852003-10-09 07:28:22 +00007 *
8 * Hacked by Tito <farmatito@tiscali.it> for size optimization.
Eric Andersen3443bd72003-07-22 07:30:36 +00009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 * 02111-1307 USA
24 *
25 *
26 * This program is based on the source code of hdparm: see below...
27 * hdparm.c - Command line interface to get/set hard disk parameters
28 * - by Mark Lord (C) 1994-2002 -- freely distributable
29 */
Glenn L McGrath07085852003-10-09 07:28:22 +000030
Eric Andersen3443bd72003-07-22 07:30:36 +000031#include <unistd.h>
32#include <string.h>
33#include <stdlib.h>
34#include <fcntl.h>
35#include <errno.h>
36#include <ctype.h>
37#include <endian.h>
38#include <sys/ioctl.h>
39#include <sys/shm.h>
40#include <sys/sysmacros.h>
41#include <sys/time.h>
42#include <sys/times.h>
43#include <sys/mount.h>
44#include "busybox.h"
45#include <linux/types.h>
46#include <linux/hdreg.h>
47#include <linux/major.h>
48#include <asm/byteorder.h>
49
50
Rob Landley688ed0d2006-03-04 22:40:25 +000051#if BB_BIG_ENDIAN && !defined(__USE_XOPEN)
52# define __USE_XOPEN
Eric Andersen3443bd72003-07-22 07:30:36 +000053#endif
54
55/* device types */
56/* ------------ */
57#define NO_DEV 0xffff
58#define ATA_DEV 0x0000
59#define ATAPI_DEV 0x0001
60
61/* word definitions */
62/* ---------------- */
63#define GEN_CONFIG 0 /* general configuration */
64#define LCYLS 1 /* number of logical cylinders */
65#define CONFIG 2 /* specific configuration */
66#define LHEADS 3 /* number of logical heads */
67#define TRACK_BYTES 4 /* number of bytes/track (ATA-1) */
68#define SECT_BYTES 5 /* number of bytes/sector (ATA-1) */
69#define LSECTS 6 /* number of logical sectors/track */
70#define START_SERIAL 10 /* ASCII serial number */
71#define LENGTH_SERIAL 10 /* 10 words (20 bytes or characters) */
72#define BUF_TYPE 20 /* buffer type (ATA-1) */
73#define BUFFER__SIZE 21 /* buffer size (ATA-1) */
74#define RW_LONG 22 /* extra bytes in R/W LONG cmd ( < ATA-4)*/
75#define START_FW_REV 23 /* ASCII firmware revision */
76#define LENGTH_FW_REV 4 /* 4 words (8 bytes or characters) */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000077#define START_MODEL 27 /* ASCII model number */
78#define LENGTH_MODEL 20 /* 20 words (40 bytes or characters) */
Eric Andersen3443bd72003-07-22 07:30:36 +000079#define SECTOR_XFER_MAX 47 /* r/w multiple: max sectors xfered */
80#define DWORD_IO 48 /* can do double-word IO (ATA-1 only) */
81#define CAPAB_0 49 /* capabilities */
82#define CAPAB_1 50
83#define PIO_MODE 51 /* max PIO mode supported (obsolete)*/
84#define DMA_MODE 52 /* max Singleword DMA mode supported (obs)*/
85#define WHATS_VALID 53 /* what fields are valid */
86#define LCYLS_CUR 54 /* current logical cylinders */
87#define LHEADS_CUR 55 /* current logical heads */
88#define LSECTS_CUR 56 /* current logical sectors/track */
89#define CAPACITY_LSB 57 /* current capacity in sectors */
90#define CAPACITY_MSB 58
91#define SECTOR_XFER_CUR 59 /* r/w multiple: current sectors xfered */
92#define LBA_SECTS_LSB 60 /* LBA: total number of user */
93#define LBA_SECTS_MSB 61 /* addressable sectors */
94#define SINGLE_DMA 62 /* singleword DMA modes */
95#define MULTI_DMA 63 /* multiword DMA modes */
96#define ADV_PIO_MODES 64 /* advanced PIO modes supported */
97 /* multiword DMA xfer cycle time: */
98#define DMA_TIME_MIN 65 /* - minimum */
99#define DMA_TIME_NORM 66 /* - manufacturer's recommended */
100 /* minimum PIO xfer cycle time: */
101#define PIO_NO_FLOW 67 /* - without flow control */
102#define PIO_FLOW 68 /* - with IORDY flow control */
103#define PKT_REL 71 /* typical #ns from PKT cmd to bus rel */
104#define SVC_NBSY 72 /* typical #ns from SERVICE cmd to !BSY */
105#define CDR_MAJOR 73 /* CD ROM: major version number */
106#define CDR_MINOR 74 /* CD ROM: minor version number */
107#define QUEUE_DEPTH 75 /* queue depth */
108#define MAJOR 80 /* major version number */
109#define MINOR 81 /* minor version number */
110#define CMDS_SUPP_0 82 /* command/feature set(s) supported */
111#define CMDS_SUPP_1 83
112#define CMDS_SUPP_2 84
113#define CMDS_EN_0 85 /* command/feature set(s) enabled */
114#define CMDS_EN_1 86
115#define CMDS_EN_2 87
116#define ULTRA_DMA 88 /* ultra DMA modes */
117 /* time to complete security erase */
118#define ERASE_TIME 89 /* - ordinary */
119#define ENH_ERASE_TIME 90 /* - enhanced */
120#define ADV_PWR 91 /* current advanced power management level
Glenn L McGrath07085852003-10-09 07:28:22 +0000121 in low byte, 0x40 in high byte. */
Eric Andersen3443bd72003-07-22 07:30:36 +0000122#define PSWD_CODE 92 /* master password revision code */
123#define HWRST_RSLT 93 /* hardware reset result */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000124#define ACOUSTIC 94 /* acoustic mgmt values ( >= ATA-6) */
Eric Andersen3443bd72003-07-22 07:30:36 +0000125#define LBA_LSB 100 /* LBA: maximum. Currently only 48 */
126#define LBA_MID 101 /* bits are used, but addr 103 */
127#define LBA_48_MSB 102 /* has been reserved for LBA in */
128#define LBA_64_MSB 103 /* the future. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000129#define RM_STAT 127 /* removable media status notification feature set support */
Eric Andersen3443bd72003-07-22 07:30:36 +0000130#define SECU_STATUS 128 /* security status */
131#define CFA_PWR_MODE 160 /* CFA power mode 1 */
132#define START_MEDIA 176 /* media serial number */
133#define LENGTH_MEDIA 20 /* 20 words (40 bytes or characters)*/
134#define START_MANUF 196 /* media manufacturer I.D. */
135#define LENGTH_MANUF 10 /* 10 words (20 bytes or characters) */
136#define INTEGRITY 255 /* integrity word */
137
138/* bit definitions within the words */
139/* -------------------------------- */
140
141/* many words are considered valid if bit 15 is 0 and bit 14 is 1 */
142#define VALID 0xc000
143#define VALID_VAL 0x4000
144/* many words are considered invalid if they are either all-0 or all-1 */
145#define NOVAL_0 0x0000
146#define NOVAL_1 0xffff
147
148/* word 0: gen_config */
Glenn L McGrath07085852003-10-09 07:28:22 +0000149#define NOT_ATA 0x8000
Eric Andersen3443bd72003-07-22 07:30:36 +0000150#define NOT_ATAPI 0x4000 /* (check only if bit 15 == 1) */
151#define MEDIA_REMOVABLE 0x0080
152#define DRIVE_NOT_REMOVABLE 0x0040 /* bit obsoleted in ATA 6 */
153#define INCOMPLETE 0x0004
154#define CFA_SUPPORT_VAL 0x848a /* 848a=CFA feature set support */
155#define DRQ_RESPONSE_TIME 0x0060
156#define DRQ_3MS_VAL 0x0000
157#define DRQ_INTR_VAL 0x0020
158#define DRQ_50US_VAL 0x0040
159#define PKT_SIZE_SUPPORTED 0x0003
160#define PKT_SIZE_12_VAL 0x0000
161#define PKT_SIZE_16_VAL 0x0001
162#define EQPT_TYPE 0x1f00
163#define SHIFT_EQPT 8
164
165#define CDROM 0x0005
166
167#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000168static const char * const pkt_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000169 "Direct-access device", /* word 0, bits 12-8 = 00 */
170 "Sequential-access device", /* word 0, bits 12-8 = 01 */
171 "Printer", /* word 0, bits 12-8 = 02 */
172 "Processor", /* word 0, bits 12-8 = 03 */
173 "Write-once device", /* word 0, bits 12-8 = 04 */
174 "CD-ROM", /* word 0, bits 12-8 = 05 */
175 "Scanner", /* word 0, bits 12-8 = 06 */
176 "Optical memory", /* word 0, bits 12-8 = 07 */
177 "Medium changer", /* word 0, bits 12-8 = 08 */
178 "Communications device", /* word 0, bits 12-8 = 09 */
179 "ACS-IT8 device", /* word 0, bits 12-8 = 0a */
180 "ACS-IT8 device", /* word 0, bits 12-8 = 0b */
181 "Array controller", /* word 0, bits 12-8 = 0c */
182 "Enclosure services", /* word 0, bits 12-8 = 0d */
183 "Reduced block command device", /* word 0, bits 12-8 = 0e */
184 "Optical card reader/writer", /* word 0, bits 12-8 = 0f */
185 "", /* word 0, bits 12-8 = 10 */
186 "", /* word 0, bits 12-8 = 11 */
187 "", /* word 0, bits 12-8 = 12 */
188 "", /* word 0, bits 12-8 = 13 */
189 "", /* word 0, bits 12-8 = 14 */
190 "", /* word 0, bits 12-8 = 15 */
191 "", /* word 0, bits 12-8 = 16 */
192 "", /* word 0, bits 12-8 = 17 */
193 "", /* word 0, bits 12-8 = 18 */
194 "", /* word 0, bits 12-8 = 19 */
195 "", /* word 0, bits 12-8 = 1a */
196 "", /* word 0, bits 12-8 = 1b */
197 "", /* word 0, bits 12-8 = 1c */
198 "", /* word 0, bits 12-8 = 1d */
199 "", /* word 0, bits 12-8 = 1e */
200 "Unknown", /* word 0, bits 12-8 = 1f */
201};
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000202
203static const char * const ata1_cfg_str[] = { /* word 0 in ATA-1 mode */
Eric Andersen3443bd72003-07-22 07:30:36 +0000204 "reserved", /* bit 0 */
205 "hard sectored", /* bit 1 */
206 "soft sectored", /* bit 2 */
207 "not MFM encoded ", /* bit 3 */
208 "head switch time > 15us", /* bit 4 */
209 "spindle motor control option", /* bit 5 */
210 "fixed drive", /* bit 6 */
211 "removable drive", /* bit 7 */
212 "disk xfer rate <= 5Mbs", /* bit 8 */
213 "disk xfer rate > 5Mbs, <= 10Mbs", /* bit 9 */
214 "disk xfer rate > 5Mbs", /* bit 10 */
215 "rotational speed tol.", /* bit 11 */
216 "data strobe offset option", /* bit 12 */
217 "track offset option", /* bit 13 */
218 "format speed tolerance gap reqd", /* bit 14 */
219 "ATAPI" /* bit 14 */
220};
221#endif
222
223/* word 1: number of logical cylinders */
224#define LCYLS_MAX 0x3fff /* maximum allowable value */
225
Eric Andersenaff114c2004-04-14 17:51:38 +0000226/* word 2: specific configuration
Eric Andersen3443bd72003-07-22 07:30:36 +0000227 * (a) require SET FEATURES to spin-up
228 * (b) require spin-up to fully reply to IDENTIFY DEVICE
229 */
230#define STBY_NID_VAL 0x37c8 /* (a) and (b) */
231#define STBY_ID_VAL 0x738c /* (a) and not (b) */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000232#define PWRD_NID_VAL 0x8c73 /* not (a) and (b) */
Eric Andersen3443bd72003-07-22 07:30:36 +0000233#define PWRD_ID_VAL 0xc837 /* not (a) and not (b) */
234
235/* words 47 & 59: sector_xfer_max & sector_xfer_cur */
236#define SECTOR_XFER 0x00ff /* sectors xfered on r/w multiple cmds*/
237#define MULTIPLE_SETTING_VALID 0x0100 /* 1=multiple sector setting is valid */
238
239/* word 49: capabilities 0 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000240#define STD_STBY 0x2000 /* 1=standard values supported (ATA);
Eric Andersen3443bd72003-07-22 07:30:36 +0000241 0=vendor specific values */
242#define IORDY_SUP 0x0800 /* 1=support; 0=may be supported */
243#define IORDY_OFF 0x0400 /* 1=may be disabled */
244#define LBA_SUP 0x0200 /* 1=Logical Block Address support */
245#define DMA_SUP 0x0100 /* 1=Direct Memory Access support */
246#define DMA_IL_SUP 0x8000 /* 1=interleaved DMA support (ATAPI) */
247#define CMD_Q_SUP 0x4000 /* 1=command queuing support (ATAPI) */
248#define OVLP_SUP 0x2000 /* 1=overlap operation support (ATAPI) */
249#define SWRST_REQ 0x1000 /* 1=ATA SW reset required (ATAPI, obsolete */
250
251/* word 50: capabilities 1 */
252#define MIN_STANDBY_TIMER 0x0001 /* 1=device specific standby timer value minimum */
253
254/* words 51 & 52: PIO & DMA cycle times */
255#define MODE 0xff00 /* the mode is in the MSBs */
256
257/* word 53: whats_valid */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000258#define OK_W88 0x0004 /* the ultra_dma info is valid */
Eric Andersen3443bd72003-07-22 07:30:36 +0000259#define OK_W64_70 0x0002 /* see above for word descriptions */
260#define OK_W54_58 0x0001 /* current cyl, head, sector, cap. info valid */
261
262/*word 63,88: dma_mode, ultra_dma_mode*/
263#define MODE_MAX 7 /* bit definitions force udma <=7 (when
264 * udma >=8 comes out it'll have to be
265 * defined in a new dma_mode word!) */
266
267/* word 64: PIO transfer modes */
268#define PIO_SUP 0x00ff /* only bits 0 & 1 are used so far, */
269#define PIO_MODE_MAX 8 /* but all 8 bits are defined */
270
271/* word 75: queue_depth */
272#define DEPTH_BITS 0x001f /* bits used for queue depth */
273
274/* words 80-81: version numbers */
275/* NOVAL_0 or NOVAL_1 means device does not report version */
276
277/* word 81: minor version number */
278#define MINOR_MAX 0x1C
279#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000280static const char * const minor_str[] = { /* word 81 value: */
Eric Andersen3443bd72003-07-22 07:30:36 +0000281 "device does not report version", /* 0x0000 */
282 "ATA-1 X3T9.2 781D prior to revision 4", /* 0x0001 */
283 "ATA-1 published, ANSI X3.221-1994", /* 0x0002 */
284 "ATA-1 X3T9.2 781D revision 4", /* 0x0003 */
285 "ATA-2 published, ANSI X3.279-1996", /* 0x0004 */
286 "ATA-2 X3T10 948D prior to revision 2k", /* 0x0005 */
287 "ATA-3 X3T10 2008D revision 1", /* 0x0006 */
288 "ATA-2 X3T10 948D revision 2k", /* 0x0007 */
289 "ATA-3 X3T10 2008D revision 0", /* 0x0008 */
290 "ATA-2 X3T10 948D revision 3", /* 0x0009 */
291 "ATA-3 published, ANSI X3.298-199x", /* 0x000a */
292 "ATA-3 X3T10 2008D revision 6", /* 0x000b */
293 "ATA-3 X3T13 2008D revision 7 and 7a", /* 0x000c */
294 "ATA/ATAPI-4 X3T13 1153D revision 6", /* 0x000d */
295 "ATA/ATAPI-4 T13 1153D revision 13", /* 0x000e */
296 "ATA/ATAPI-4 X3T13 1153D revision 7", /* 0x000f */
297 "ATA/ATAPI-4 T13 1153D revision 18", /* 0x0010 */
298 "ATA/ATAPI-4 T13 1153D revision 15", /* 0x0011 */
299 "ATA/ATAPI-4 published, ANSI NCITS 317-1998", /* 0x0012 */
300 "ATA/ATAPI-5 T13 1321D revision 3",
301 "ATA/ATAPI-4 T13 1153D revision 14", /* 0x0014 */
302 "ATA/ATAPI-5 T13 1321D revision 1", /* 0x0015 */
303 "ATA/ATAPI-5 published, ANSI NCITS 340-2000", /* 0x0016 */
304 "ATA/ATAPI-4 T13 1153D revision 17", /* 0x0017 */
305 "ATA/ATAPI-6 T13 1410D revision 0", /* 0x0018 */
306 "ATA/ATAPI-6 T13 1410D revision 3a", /* 0x0019 */
307 "Reserved", /* 0x001a */
308 "ATA/ATAPI-6 T13 1410D revision 2", /* 0x001b */
309 "ATA/ATAPI-6 T13 1410D revision 1", /* 0x001c */
310 "reserved" /* 0x001d */
311 "reserved" /* 0x001e */
312 "reserved" /* 0x001f-0xfffe*/
313};
314#endif
Glenn L McGrath07085852003-10-09 07:28:22 +0000315static const char actual_ver[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000316 /* word 81 value: */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000317 0, /* 0x0000 WARNING: */
318 1, /* 0x0001 WARNING: */
319 1, /* 0x0002 WARNING: */
320 1, /* 0x0003 WARNING: */
321 2, /* 0x0004 WARNING: This array */
322 2, /* 0x0005 WARNING: corresponds */
Eric Andersen3443bd72003-07-22 07:30:36 +0000323 3, /* 0x0006 WARNING: *exactly* */
324 2, /* 0x0007 WARNING: to the ATA/ */
325 3, /* 0x0008 WARNING: ATAPI version */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000326 2, /* 0x0009 WARNING: listed in */
327 3, /* 0x000a WARNING: the */
328 3, /* 0x000b WARNING: minor_str */
Eric Andersen3443bd72003-07-22 07:30:36 +0000329 3, /* 0x000c WARNING: array */
330 4, /* 0x000d WARNING: above. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000331 4, /* 0x000e WARNING: */
332 4, /* 0x000f WARNING: if you change */
333 4, /* 0x0010 WARNING: that one, */
Eric Andersen3443bd72003-07-22 07:30:36 +0000334 4, /* 0x0011 WARNING: change this one */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000335 4, /* 0x0012 WARNING: too!!! */
Eric Andersen3443bd72003-07-22 07:30:36 +0000336 5, /* 0x0013 WARNING: */
337 4, /* 0x0014 WARNING: */
338 5, /* 0x0015 WARNING: */
339 5, /* 0x0016 WARNING: */
340 4, /* 0x0017 WARNING: */
341 6, /* 0x0018 WARNING: */
342 6, /* 0x0019 WARNING: */
343 0, /* 0x001a WARNING: */
344 6, /* 0x001b WARNING: */
345 6, /* 0x001c WARNING: */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000346 0 /* 0x001d-0xfffe */
Eric Andersen3443bd72003-07-22 07:30:36 +0000347};
348
349/* words 82-84: cmds/feats supported */
350#define CMDS_W82 0x77ff /* word 82: defined command locations*/
351#define CMDS_W83 0x3fff /* word 83: defined command locations*/
352#define CMDS_W84 0x002f /* word 83: defined command locations*/
Glenn L McGrath07085852003-10-09 07:28:22 +0000353#define SUPPORT_48_BIT 0x0400
Eric Andersen3443bd72003-07-22 07:30:36 +0000354#define NUM_CMD_FEAT_STR 48
355
356#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000357static const char * const cmd_feat_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000358 "", /* word 82 bit 15: obsolete */
359 "NOP cmd", /* word 82 bit 14 */
360 "READ BUFFER cmd", /* word 82 bit 13 */
361 "WRITE BUFFER cmd", /* word 82 bit 12 */
362 "", /* word 82 bit 11: obsolete */
363 "Host Protected Area feature set", /* word 82 bit 10 */
364 "DEVICE RESET cmd", /* word 82 bit 9 */
365 "SERVICE interrupt", /* word 82 bit 8 */
366 "Release interrupt", /* word 82 bit 7 */
367 "Look-ahead", /* word 82 bit 6 */
368 "Write cache", /* word 82 bit 5 */
369 "PACKET command feature set", /* word 82 bit 4 */
370 "Power Management feature set", /* word 82 bit 3 */
371 "Removable Media feature set", /* word 82 bit 2 */
372 "Security Mode feature set", /* word 82 bit 1 */
373 "SMART feature set", /* word 82 bit 0 */
374 /* --------------*/
375 "", /* word 83 bit 15: !valid bit */
376 "", /* word 83 bit 14: valid bit */
377 "FLUSH CACHE EXT command", /* word 83 bit 13 */
378 "Mandatory FLUSH CACHE command ", /* word 83 bit 12 */
379 "Device Configuration Overlay feature set ",
380 "48-bit Address feature set ", /* word 83 bit 10 */
381 "",
382 "SET MAX security extension", /* word 83 bit 8 */
383 "Address Offset Reserved Area Boot", /* word 83 bit 7 */
384 "SET FEATURES subcommand required to spinup after power up",
385 "Power-Up In Standby feature set", /* word 83 bit 5 */
386 "Removable Media Status Notification feature set",
Eric Andersen06d4ec22004-03-19 10:53:52 +0000387 "Adv. Power Management feature set",/* word 83 bit 3 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000388 "CFA feature set", /* word 83 bit 2 */
389 "READ/WRITE DMA QUEUED", /* word 83 bit 1 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000390 "DOWNLOAD MICROCODE cmd", /* word 83 bit 0 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000391 /* --------------*/
392 "", /* word 84 bit 15: !valid bit */
393 "", /* word 84 bit 14: valid bit */
394 "", /* word 84 bit 13: reserved */
395 "", /* word 84 bit 12: reserved */
396 "", /* word 84 bit 11: reserved */
397 "", /* word 84 bit 10: reserved */
398 "", /* word 84 bit 9: reserved */
399 "", /* word 84 bit 8: reserved */
400 "", /* word 84 bit 7: reserved */
401 "", /* word 84 bit 6: reserved */
402 "General Purpose Logging feature set", /* word 84 bit 5 */
403 "", /* word 84 bit 4: reserved */
404 "Media Card Pass Through Command feature set ",
405 "Media serial number ", /* word 84 bit 2 */
406 "SMART self-test ", /* word 84 bit 1 */
407 "SMART error logging " /* word 84 bit 0 */
408};
409#endif
410
411
412/* words 85-87: cmds/feats enabled */
413/* use cmd_feat_str[] to display what commands and features have
Glenn L McGrath07085852003-10-09 07:28:22 +0000414 * been enabled with words 85-87
Eric Andersen3443bd72003-07-22 07:30:36 +0000415 */
416
417/* words 89, 90, SECU ERASE TIME */
418#define ERASE_BITS 0x00ff
419
420/* word 92: master password revision */
421/* NOVAL_0 or NOVAL_1 means no support for master password revision */
422
423/* word 93: hw reset result */
424#define CBLID 0x2000 /* CBLID status */
425#define RST0 0x0001 /* 1=reset to device #0 */
426#define DEV_DET 0x0006 /* how device num determined */
427#define JUMPER_VAL 0x0002 /* device num determined by jumper */
428#define CSEL_VAL 0x0004 /* device num determined by CSEL_VAL */
429
430/* word 127: removable media status notification feature set support */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000431#define RM_STAT_BITS 0x0003
Eric Andersen3443bd72003-07-22 07:30:36 +0000432#define RM_STAT_SUP 0x0001
Glenn L McGrath07085852003-10-09 07:28:22 +0000433
Eric Andersen3443bd72003-07-22 07:30:36 +0000434/* word 128: security */
435#define SECU_ENABLED 0x0002
436#define SECU_LEVEL 0x0010
437#define NUM_SECU_STR 6
438#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000439static const char * const secu_str[] = {
Eric Andersen3443bd72003-07-22 07:30:36 +0000440 "supported", /* word 128, bit 0 */
441 "enabled", /* word 128, bit 1 */
442 "locked", /* word 128, bit 2 */
443 "frozen", /* word 128, bit 3 */
444 "expired: security count", /* word 128, bit 4 */
445 "supported: enhanced erase" /* word 128, bit 5 */
446};
447#endif
448
449/* word 160: CFA power mode */
450#define VALID_W160 0x8000 /* 1=word valid */
451#define PWR_MODE_REQ 0x2000 /* 1=CFA power mode req'd by some cmds*/
452#define PWR_MODE_OFF 0x1000 /* 1=CFA power moded disabled */
453#define MAX_AMPS 0x0fff /* value = max current in ma */
454
455/* word 255: integrity */
456#define SIG 0x00ff /* signature location */
457#define SIG_VAL 0x00A5 /* signature value */
458
Glenn L McGrath07085852003-10-09 07:28:22 +0000459#define VERSION "v5.4"
460
461#define TIMING_MB 64
462#define TIMING_BUF_MB 1
463#define TIMING_BUF_BYTES (TIMING_BUF_MB * 1024 * 1024)
464#define TIMING_BUF_COUNT (timing_MB / TIMING_BUF_MB)
465#define BUFCACHE_FACTOR 2
466
467#undef DO_FLUSHCACHE /* under construction: force cache flush on -W0 */
468
469/* Busybox messages and functions */
470
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +0000471static const char bb_msg_shared_mem[] = "could not %s sharedmem buf";
472static const char bb_msg_op_not_supp[] = " operation not supported on %s disks";
Glenn L McGrath07085852003-10-09 07:28:22 +0000473
474static void bb_ioctl(int fd, int request, void *argp, const char *string)
475{
476 if (ioctl (fd, request, argp) != 0)
Eric Andersen06d4ec22004-03-19 10:53:52 +0000477 bb_perror_msg(" %s", string);
Glenn L McGrath07085852003-10-09 07:28:22 +0000478}
479
480static void if_printf(unsigned long i, char *fmt, ... )
481{
482 va_list ap;
483 va_start(ap, fmt);
484 if (i)
485 vprintf(fmt, ap);
486 va_end(ap);
487}
488
489static void on_off (unsigned int value);
490
491static void if_printf_on_off(unsigned long get_arg,const char *fmt, unsigned long arg)
492{
493 if (get_arg)
494 {
495 printf(fmt, arg);
496 on_off(arg);
497 }
498}
499
500static void bb_ioctl_on_off(int fd, int request, void *argp, const char *string,
501 const char * fmt)
502{
503 if (ioctl (fd, request, &argp) != 0)
Eric Andersen06d4ec22004-03-19 10:53:52 +0000504 bb_perror_msg(" %s", string);
Glenn L McGrath07085852003-10-09 07:28:22 +0000505 else
506 {
507 printf(fmt, (unsigned long) argp);
508 on_off((unsigned long) argp);
509 }
510}
Eric Andersen416c2422003-12-12 00:08:57 +0000511
512#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +0000513static void if_else_printf(unsigned long i, char *fmt1, char *fmt2, ... )
514{
515 va_list ap;
516 va_start(ap, fmt2);
517 if (i)
518 vprintf(fmt1, ap);
519 else
520 vprintf(fmt2, ap);
521 va_end(ap);
522}
523
524static void print_ascii(uint16_t *p, uint8_t length);
525
526static void xprint_ascii(uint16_t *val ,int i, char * string, int n)
527{
528 if(val[i])
529 {
530 printf("\t%-20s",string);
531 print_ascii(&val[i], n);
532 }
533}
534
Eric Andersen416c2422003-12-12 00:08:57 +0000535static void if_strcat(unsigned long test, char *modes, char *string)
536{
537 if (test)
538 strcat(modes,string);
539}
540#endif
541
Glenn L McGrath07085852003-10-09 07:28:22 +0000542static void sync_and_sleep(int i)
543{
544 sync();
545 sleep(i);
546}
547
Eric Andersenb2aa7762004-04-05 13:08:08 +0000548static uint16_t check_if_min_and_set_val(uint16_t a, uint16_t b)
Glenn L McGrath07085852003-10-09 07:28:22 +0000549{
550 if( a < b)
551 a = b;
Eric Andersenb2aa7762004-04-05 13:08:08 +0000552 return a;
Glenn L McGrath07085852003-10-09 07:28:22 +0000553}
554
Eric Andersenb2aa7762004-04-05 13:08:08 +0000555static uint16_t check_if_maj_and_set_val(uint16_t a, uint16_t b)
Glenn L McGrath07085852003-10-09 07:28:22 +0000556{
557 if( a > b)
558 a = b;
Eric Andersenb2aa7762004-04-05 13:08:08 +0000559 return a;
Glenn L McGrath07085852003-10-09 07:28:22 +0000560}
561
Eric Andersenb2aa7762004-04-05 13:08:08 +0000562static unsigned long int set_flag(char *p, char max)
Glenn L McGrath07085852003-10-09 07:28:22 +0000563{
564 if (*p >= '0' && *p <= max )
565 return 1;
566 return 0;
567}
568
Glenn L McGrath07085852003-10-09 07:28:22 +0000569/* end of busybox specific stuff */
570
Eric Andersen3443bd72003-07-22 07:30:36 +0000571#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +0000572static uint8_t mode_loop(uint16_t mode_sup, uint16_t mode_sel, int cc, uint8_t *have_mode)
573{
Eric Andersen3443bd72003-07-22 07:30:36 +0000574 uint16_t ii;
575 uint8_t err_dma = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000576
577 for(ii = 0; ii <= MODE_MAX; ii++)
578 {
579 if(mode_sel & 0x0001)
580 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000581 printf("*%cdma%u ",cc,ii);
Glenn L McGrath07085852003-10-09 07:28:22 +0000582 if(*have_mode)
583 err_dma = 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000584 *have_mode = 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000585 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000586 else if(mode_sup & 0x0001)
587 printf("%cdma%u ",cc,ii);
588
589 mode_sup >>=1;
590 mode_sel >>=1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000591 }
592 return err_dma;
593}
Glenn L McGrath07085852003-10-09 07:28:22 +0000594
Eric Andersen3443bd72003-07-22 07:30:36 +0000595static void print_ascii(uint16_t *p, uint8_t length) {
596 uint8_t ii;
597 char cl;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000598
Eric Andersen3443bd72003-07-22 07:30:36 +0000599 /* find first non-space & print it */
Glenn L McGrath07085852003-10-09 07:28:22 +0000600 for(ii = 0; ii< length; ii++)
601 {
602 if(((char) 0x00ff&((*p)>>8)) != ' ')
603 break;
604 if((cl = (char) 0x00ff&(*p)) != ' ')
605 {
606 if_printf((cl != '\0'),"%c",cl);
607 p++;
608 ii++;
Eric Andersen3443bd72003-07-22 07:30:36 +0000609 break;
610 }
611 p++;
612 }
613 /* print the rest */
Glenn L McGrath07085852003-10-09 07:28:22 +0000614 for(; ii< length; ii++)
615 {
616 if(!(*p))
617 break; /* some older devices have NULLs */
Eric Andersen3443bd72003-07-22 07:30:36 +0000618 printf("%c%c",(char)0x00ff&((*p)>>8),(char)(*p)&0x00ff);
619 p++;
620 }
621 printf("\n");
622}
623
624/* identify() is the only extern function used across two source files. The
625 others, though, were declared in hdparm.c with global scope; since other
626 functions in that file have static (file) scope, I assume the difference is
627 intentional. */
628static void identify (uint16_t *id_supplied, const char *devname)
629{
630
Glenn L McGrath07085852003-10-09 07:28:22 +0000631 char *id_file = NULL;
Eric Andersen3443bd72003-07-22 07:30:36 +0000632 FILE *fl;
633 uint16_t val[256], ii, jj, kk;
634 uint16_t like_std = 1, std = 0, min_std = 0xffff;
635 uint16_t dev = NO_DEV, eqpt = NO_DEV;
636 uint8_t have_mode = 0, err_dma = 0;
637 uint8_t chksum = 0;
638 uint32_t ll, mm, nn, oo;
639 __u64 bbbig; /* (:) */
640
Glenn L McGrath07085852003-10-09 07:28:22 +0000641 if (id_supplied)
642 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000643#if __BYTE_ORDER == __BIG_ENDIAN
644 swab(id_supplied, val, sizeof(val));
645#else
646 memcpy(val, id_supplied, sizeof(val));
647#endif
Glenn L McGrath07085852003-10-09 07:28:22 +0000648 }
649 else
650 {
651 id_file = xcalloc(1, strlen(devname)+22);
652 sprintf(id_file, "/proc/ide/%s/identify", devname);
Eric Andersen3443bd72003-07-22 07:30:36 +0000653 /* open the file, read in all the info and close it */
Glenn L McGrath07085852003-10-09 07:28:22 +0000654 if (id_file == NULL)
Eric Andersen3443bd72003-07-22 07:30:36 +0000655 fl = stdin;
Glenn L McGrath07085852003-10-09 07:28:22 +0000656 else
657 fl = bb_xfopen(id_file, "r");
658
Eric Andersen3443bd72003-07-22 07:30:36 +0000659 /* calculate checksum over all bytes */
Glenn L McGrath07085852003-10-09 07:28:22 +0000660 for(ii = GEN_CONFIG; ii<=INTEGRITY; ii++)
661 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000662 unsigned int scratch;
Glenn L McGrath07085852003-10-09 07:28:22 +0000663 if(1 != fscanf(fl,"%04x",&scratch))
664 break;
Eric Andersen3443bd72003-07-22 07:30:36 +0000665 val[ii] = (uint16_t)scratch;
666 chksum += val[ii] + (val[ii] >> 8);
667 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000668 fclose(fl);
669 /*bb_fclose_nonstdin(fl);*/
Eric Andersen3443bd72003-07-22 07:30:36 +0000670 if(ii < (INTEGRITY+1))
671 bb_error_msg_and_die("Input file wrong format or length");
672 }
673 chksum &= 0xff;
674
675 /* check if we recognise the device type */
676 printf("\n");
Glenn L McGrath07085852003-10-09 07:28:22 +0000677 if(!(val[GEN_CONFIG] & NOT_ATA))
678 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000679 dev = ATA_DEV;
680 printf("ATA device, with ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000681 }
682 else if(val[GEN_CONFIG]==CFA_SUPPORT_VAL)
683 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000684 dev = ATA_DEV;
685 like_std = 4;
686 printf("CompactFlash ATA device, with ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000687 }
688 else if(!(val[GEN_CONFIG] & NOT_ATAPI))
689 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000690 dev = ATAPI_DEV;
691 eqpt = (val[GEN_CONFIG] & EQPT_TYPE) >> SHIFT_EQPT;
692 printf("ATAPI %s, with ", pkt_str[eqpt]);
693 like_std = 3;
Eric Andersen3443bd72003-07-22 07:30:36 +0000694 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000695 else
696 /*"Unknown device type:\n\tbits 15&14 of general configuration word 0 both set to 1.\n"*/
697 bb_error_msg_and_die("Unknown device type");
Eric Andersen3443bd72003-07-22 07:30:36 +0000698
Glenn L McGrath07085852003-10-09 07:28:22 +0000699 if_printf(!(val[GEN_CONFIG] & MEDIA_REMOVABLE),"non-");
700 printf("removable media\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000701
702 /* Info from the specific configuration word says whether or not the
703 * ID command completed correctly. It is only defined, however in
Glenn L McGrath07085852003-10-09 07:28:22 +0000704 * ATA/ATAPI-5 & 6; it is reserved (value theoretically 0) in prior
Eric Andersen3443bd72003-07-22 07:30:36 +0000705 * standards. Since the values allowed for this word are extremely
706 * specific, it should be safe to check it now, even though we don't
707 * know yet what standard this device is using.
708 */
709 if((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL) ||
Glenn L McGrath07085852003-10-09 07:28:22 +0000710 (val[CONFIG]==PWRD_NID_VAL) || (val[CONFIG]==PWRD_ID_VAL) )
711 {
712 like_std = 5;
713 if_printf(((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL)),
714 "powers-up in standby; SET FEATURES subcmd spins-up.\n");
715 if_printf((((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==PWRD_NID_VAL)) && (val[GEN_CONFIG] & INCOMPLETE)),
716 "\n\tWARNING: ID response incomplete.\n\tFollowing data may be incorrect.\n\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000717 }
718
719 /* output the model and serial numbers and the fw revision */
Glenn L McGrath07085852003-10-09 07:28:22 +0000720 xprint_ascii(val, START_MODEL, "Model Number:", LENGTH_MODEL);
721 xprint_ascii(val, START_SERIAL, "Serial Number:", LENGTH_SERIAL);
722 xprint_ascii(val, START_FW_REV, "Firmware Revision:", LENGTH_FW_REV);
723 xprint_ascii(val, START_MEDIA, "Media Serial Num:", LENGTH_MEDIA);
724 xprint_ascii(val, START_MANUF, "Media Manufacturer:", LENGTH_MANUF);
Eric Andersen3443bd72003-07-22 07:30:36 +0000725
726 /* major & minor standards version number (Note: these words were not
727 * defined until ATA-3 & the CDROM std uses different words.) */
728 printf("Standards:");
Glenn L McGrath07085852003-10-09 07:28:22 +0000729 if(eqpt != CDROM)
730 {
731 if(val[MINOR] && (val[MINOR] <= MINOR_MAX))
732 {
Eric Andersenb2aa7762004-04-05 13:08:08 +0000733 like_std=check_if_min_and_set_val(like_std, 3);
Eric Andersen3443bd72003-07-22 07:30:36 +0000734 std = actual_ver[val[MINOR]];
Glenn L McGrath07085852003-10-09 07:28:22 +0000735 if_printf(std,"\n\tUsed: %s ",minor_str[val[MINOR]]);
736
Eric Andersen3443bd72003-07-22 07:30:36 +0000737 }
738 /* looks like when they up-issue the std, they obsolete one;
Glenn L McGrath07085852003-10-09 07:28:22 +0000739 * thus, only the newest 4 issues need be supported. (That's
Eric Andersen3443bd72003-07-22 07:30:36 +0000740 * what "kk" and "min_std" are all about.) */
Glenn L McGrath07085852003-10-09 07:28:22 +0000741 if(val[MAJOR] && (val[MAJOR] !=NOVAL_1))
742 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000743 printf("\n\tSupported: ");
744 jj = val[MAJOR] << 1;
745 kk = like_std >4 ? like_std-4: 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000746 for(ii = 14; (ii >0)&&(ii>kk); ii--)
747 {
748 if(jj & 0x8000)
749 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000750 printf("%u ", ii);
Glenn L McGrath07085852003-10-09 07:28:22 +0000751 if(like_std < ii)
752 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000753 like_std = ii;
754 kk = like_std >4 ? like_std-4: 0;
755 }
Eric Andersenb2aa7762004-04-05 13:08:08 +0000756 min_std=check_if_maj_and_set_val(min_std, ii);
Eric Andersen3443bd72003-07-22 07:30:36 +0000757 }
758 jj <<= 1;
759 }
Eric Andersenb2aa7762004-04-05 13:08:08 +0000760 like_std=check_if_min_and_set_val(like_std, 3);
Eric Andersen3443bd72003-07-22 07:30:36 +0000761 }
762 /* Figure out what standard the device is using if it hasn't told
763 * us. If we know the std, check if the device is using any of
764 * the words from the next level up. It happens.
765 */
Eric Andersenb2aa7762004-04-05 13:08:08 +0000766 like_std=check_if_min_and_set_val(like_std, std);
Glenn L McGrath07085852003-10-09 07:28:22 +0000767
Eric Andersen3443bd72003-07-22 07:30:36 +0000768 if(((std == 5) || (!std && (like_std < 6))) &&
Glenn L McGrath07085852003-10-09 07:28:22 +0000769 ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
770 (( val[CMDS_SUPP_1] & CMDS_W83) > 0x00ff)) ||
771 ((( val[CMDS_SUPP_2] & VALID) == VALID_VAL) &&
772 ( val[CMDS_SUPP_2] & CMDS_W84) ) ) )
773 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000774 like_std = 6;
Glenn L McGrath07085852003-10-09 07:28:22 +0000775 }
776 else if(((std == 4) || (!std && (like_std < 5))) &&
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000777 ((((val[INTEGRITY] & SIG) == SIG_VAL) && !chksum) ||
Glenn L McGrath07085852003-10-09 07:28:22 +0000778 (( val[HWRST_RSLT] & VALID) == VALID_VAL) ||
779 ((( val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
780 (( val[CMDS_SUPP_1] & CMDS_W83) > 0x001f)) ) )
781 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000782 like_std = 5;
Glenn L McGrath07085852003-10-09 07:28:22 +0000783 }
784 else if(((std == 3) || (!std && (like_std < 4))) &&
785 ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
786 ((( val[CMDS_SUPP_1] & CMDS_W83) > 0x0000) ||
787 (( val[CMDS_SUPP_0] & CMDS_W82) > 0x000f))) ||
788 (( val[CAPAB_1] & VALID) == VALID_VAL) ||
789 (( val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA]) ||
790 (( val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP) ) )
791 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000792 like_std = 4;
Glenn L McGrath07085852003-10-09 07:28:22 +0000793 }
794 else if(((std == 2) || (!std && (like_std < 3))) &&
795 ((val[CMDS_SUPP_1] & VALID) == VALID_VAL) )
796 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000797 like_std = 3;
Glenn L McGrath07085852003-10-09 07:28:22 +0000798 }
799 else if(((std == 1) || (!std && (like_std < 2))) &&
800 ((val[CAPAB_0] & (IORDY_SUP | IORDY_OFF)) ||
801 (val[WHATS_VALID] & OK_W64_70)) )
802 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000803 like_std = 2;
804 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000805 if(!std)
Eric Andersen3443bd72003-07-22 07:30:36 +0000806 printf("\n\tLikely used: %u\n",like_std);
Glenn L McGrath07085852003-10-09 07:28:22 +0000807 else if(like_std > std)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000808 printf("& some of %u\n",like_std);
Glenn L McGrath07085852003-10-09 07:28:22 +0000809 else
810 printf("\n");
811 }
812 else
813 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000814 /* TBD: do CDROM stuff more thoroughly. For now... */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000815 kk = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000816 if(val[CDR_MINOR] == 9)
817 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000818 kk = 1;
819 printf("\n\tUsed: ATAPI for CD-ROMs, SFF-8020i, r2.5");
820 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000821 if(val[CDR_MAJOR] && (val[CDR_MAJOR] !=NOVAL_1))
822 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000823 kk = 1;
824 printf("\n\tSupported: CD-ROM ATAPI");
825 jj = val[CDR_MAJOR] >> 1;
Glenn L McGrath07085852003-10-09 07:28:22 +0000826 for(ii = 1; ii <15; ii++)
827 {
828 if_printf((jj & 0x0001),"-%u ", ii);
Eric Andersen3443bd72003-07-22 07:30:36 +0000829 jj >>= 1;
830 }
831 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000832 if_else_printf((!kk),"\n\tLikely used CD-ROM ATAPI-1\n","\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000833 /* the cdrom stuff is more like ATA-2 than anything else, so: */
834 like_std = 2;
835 }
836
Glenn L McGrath07085852003-10-09 07:28:22 +0000837 if(min_std == 0xffff)
838 min_std = like_std > 4 ? like_std - 3 : 1;
Eric Andersen3443bd72003-07-22 07:30:36 +0000839
840 printf("Configuration:\n");
841 /* more info from the general configuration word */
Glenn L McGrath07085852003-10-09 07:28:22 +0000842 if((eqpt != CDROM) && (like_std == 1))
843 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000844 jj = val[GEN_CONFIG] >> 1;
Glenn L McGrath07085852003-10-09 07:28:22 +0000845 for(ii = 1; ii < 15; ii++)
846 {
847 if_printf((jj & 0x0001),"\t%s\n",ata1_cfg_str[ii]);
Eric Andersen3443bd72003-07-22 07:30:36 +0000848 jj >>=1;
849 }
850 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000851 if(dev == ATAPI_DEV)
852 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000853 printf("\tDRQ response: "); /* Data Request (DRQ) */
Glenn L McGrath07085852003-10-09 07:28:22 +0000854 switch(val[GEN_CONFIG] & DRQ_RESPONSE_TIME)
855 {
856 case DRQ_3MS_VAL :
857 printf("3ms.\n");
858 break;
859 case DRQ_INTR_VAL :
860 printf("<=10ms with INTRQ\n");
861 break;
862 case DRQ_50US_VAL :
863 printf("50us.\n");
864 break;
865 default :
866 printf("unknown.\n");
867 break;
Eric Andersen3443bd72003-07-22 07:30:36 +0000868 }
869 printf("\tPacket size: ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000870 switch(val[GEN_CONFIG] & PKT_SIZE_SUPPORTED)
871 {
872 case PKT_SIZE_12_VAL :
873 printf("12 bytes\n");
874 break;
875 case PKT_SIZE_16_VAL :
876 printf("16 bytes\n");
877 break;
878 default :
879 printf("Unknown\n");
880 break;
Eric Andersen3443bd72003-07-22 07:30:36 +0000881 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000882 }
883 else
884 {
885 /* addressing...CHS? See section 6.2 of ATA specs 4 or 5 */
Eric Andersen3443bd72003-07-22 07:30:36 +0000886 ll = (uint32_t)val[LBA_SECTS_MSB] << 16 | val[LBA_SECTS_LSB];
887 mm = 0; bbbig = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000888 if ( (ll > 0x00FBFC10) && (!val[LCYLS]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000889 printf("\tCHS addressing not supported\n");
Glenn L McGrath07085852003-10-09 07:28:22 +0000890 else
891 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000892 jj = val[WHATS_VALID] & OK_W54_58;
Glenn L McGrath07085852003-10-09 07:28:22 +0000893 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",
894 val[LCYLS],jj?val[LCYLS_CUR]:0, val[LHEADS],jj?val[LHEADS_CUR]:0, val[LSECTS],jj?val[LSECTS_CUR]:0);
895
896 if_printf(((min_std == 1) && (val[TRACK_BYTES] || val[SECT_BYTES])),
897 "\tbytes/track: %u\tbytes/sector: %u\n",val[TRACK_BYTES], val[SECT_BYTES]);
898
899 if(jj)
900 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000901 mm = (uint32_t)val[CAPACITY_MSB] << 16 | val[CAPACITY_LSB];
Glenn L McGrath07085852003-10-09 07:28:22 +0000902 if(like_std < 3)
903 {
904 /* check Endian of capacity bytes */
Eric Andersen3443bd72003-07-22 07:30:36 +0000905 nn = val[LCYLS_CUR] * val[LHEADS_CUR] * val[LSECTS_CUR];
906 oo = (uint32_t)val[CAPACITY_LSB] << 16 | val[CAPACITY_MSB];
907 if(abs(mm - nn) > abs(oo - nn))
908 mm = oo;
909 }
910 printf("\tCHS current addressable sectors:%11u\n",mm);
Glenn L McGrath07085852003-10-09 07:28:22 +0000911 }
Eric Andersen3443bd72003-07-22 07:30:36 +0000912 }
913 /* LBA addressing */
914 printf("\tLBA user addressable sectors:%11u\n",ll);
915 if( ((val[CMDS_SUPP_1] & VALID) == VALID_VAL) &&
Glenn L McGrath07085852003-10-09 07:28:22 +0000916 (val[CMDS_SUPP_1] & SUPPORT_48_BIT) )
917 {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000918 bbbig = (__u64)val[LBA_64_MSB] << 48 |
919 (__u64)val[LBA_48_MSB] << 32 |
920 (__u64)val[LBA_MID] << 16 |
Glenn L McGrath07085852003-10-09 07:28:22 +0000921 val[LBA_LSB] ;
Eric Andersen3443bd72003-07-22 07:30:36 +0000922 printf("\tLBA48 user addressable sectors:%11llu\n",bbbig);
923 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000924
925 if (!bbbig)
926 bbbig = (__u64)(ll>mm ? ll : mm); /* # 512 byte blocks */
Eric Andersen3443bd72003-07-22 07:30:36 +0000927 printf("\tdevice size with M = 1024*1024: %11llu MBytes\n",bbbig>>11);
928 bbbig = (bbbig<<9)/1000000;
929 printf("\tdevice size with M = 1000*1000: %11llu MBytes ",bbbig);
Glenn L McGrath07085852003-10-09 07:28:22 +0000930
931 if_else_printf((bbbig > 1000),"(%llu GB)\n","\n",bbbig/1000);
Eric Andersen3443bd72003-07-22 07:30:36 +0000932
933 }
934
935 /* hw support of commands (capabilities) */
Glenn L McGrath07085852003-10-09 07:28:22 +0000936 printf("Capabilities:\n\t");
937
938 if(dev == ATAPI_DEV)
939 {
940 if(eqpt != CDROM)
941 if_printf((val[CAPAB_0] & CMD_Q_SUP),"Cmd queuing, ");
942
943 if_printf((val[CAPAB_0] & OVLP_SUP),"Cmd overlap, ");
Eric Andersen3443bd72003-07-22 07:30:36 +0000944 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000945 if_printf((val[CAPAB_0] & LBA_SUP),"LBA, ");
946
947 if(like_std != 1)
948 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000949 printf("IORDY");
Glenn L McGrath07085852003-10-09 07:28:22 +0000950 if_printf((!(val[CAPAB_0] & IORDY_SUP)),"(may be)");
951 if_else_printf((val[CAPAB_0] & IORDY_OFF),"(can","(cannot");
952 printf(" be disabled)\n");
953 }
954 else
955 printf("no IORDY\n");
956
957 if((like_std == 1) && val[BUF_TYPE])
958 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000959 kk = val[BUF_TYPE];
960 printf("\tBuffer type: %04x: ",kk);
Glenn L McGrath07085852003-10-09 07:28:22 +0000961 if_else_printf((kk < 2),"single port, single-sector","dual port, multi-sector");
962 if_printf((kk > 2)," with read caching ability");
Eric Andersen3443bd72003-07-22 07:30:36 +0000963 printf("\n");
964 }
965 jj = 0;
Glenn L McGrath07085852003-10-09 07:28:22 +0000966 if((min_std == 1) && (val[BUFFER__SIZE] && (val[BUFFER__SIZE] != NOVAL_1)))
967 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000968 printf("\tBuffer size: %.1fkB",(float)val[BUFFER__SIZE]/2);
969 jj = 1;
970 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000971 if((min_std < 4) && (val[RW_LONG]))
972 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000973 printf("\tbytes avail on r/w long: %u",val[RW_LONG]);
974 jj = 1;
975 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000976 if((eqpt != CDROM) && (like_std > 3))
977 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000978 printf("\tQueue depth: %u",(val[QUEUE_DEPTH] & DEPTH_BITS)+1);
979 jj = 1;
980 }
Glenn L McGrath07085852003-10-09 07:28:22 +0000981 if_printf(jj,"\n");
982
983 if(dev == ATA_DEV)
984 {
985 if(like_std == 1)
986 printf("\tCan%s perform double-word IO\n",(!val[DWORD_IO]) ?"not":"");
987 else
988 {
Eric Andersen3443bd72003-07-22 07:30:36 +0000989 printf("\tStandby timer values: spec'd by ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000990 if_else_printf((val[CAPAB_0] & STD_STBY),"Standard","Vendor");
991 if((like_std > 3) && ((val[CAPAB_1] & VALID) == VALID_VAL))
992 printf(", %s device specific minimum\n",(val[CAPAB_1] & MIN_STANDBY_TIMER)?"with":"no");
993 else
994 printf("\n");
Eric Andersen3443bd72003-07-22 07:30:36 +0000995 }
996 printf("\tR/W multiple sector transfer: ");
Glenn L McGrath07085852003-10-09 07:28:22 +0000997 if((like_std < 3) && !(val[SECTOR_XFER_MAX] & SECTOR_XFER))
Eric Andersen3443bd72003-07-22 07:30:36 +0000998 printf("not supported\n");
Glenn L McGrath07085852003-10-09 07:28:22 +0000999 else
1000 {
1001 printf("Max = %u\tCurrent = ",val[SECTOR_XFER_MAX] & SECTOR_XFER);
1002 if_else_printf((val[SECTOR_XFER_CUR] & MULTIPLE_SETTING_VALID),
1003 "%u\n","?\n",val[SECTOR_XFER_CUR] & SECTOR_XFER);
Eric Andersen3443bd72003-07-22 07:30:36 +00001004 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001005 if((like_std > 3) && (val[CMDS_SUPP_1] & 0x0008))
1006 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001007 /* We print out elsewhere whether the APM feature is enabled or
1008 not. If it's not enabled, let's not repeat the info; just print
1009 nothing here. */
Glenn L McGrath07085852003-10-09 07:28:22 +00001010 printf("\tAdvancedPM level: ");
1011 if ( (val[ADV_PWR] & 0xFF00) == 0x4000 )
1012 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001013 uint8_t apm_level = val[ADV_PWR] & 0x00FF;
Eric Andersen3443bd72003-07-22 07:30:36 +00001014 printf("%u (0x%x)\n", apm_level, apm_level);
Glenn L McGrath07085852003-10-09 07:28:22 +00001015 }
1016 else
Eric Andersen3443bd72003-07-22 07:30:36 +00001017 printf("unknown setting (0x%04x)\n", val[ADV_PWR]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001018 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001019 if(like_std > 5)
1020 {
1021 if_printf(val[ACOUSTIC],"\tRecommended acoustic management value: %u, current value: %u\n",
1022 (val[ACOUSTIC] >> 8) & 0x00ff, val[ACOUSTIC] & 0x00ff);
Eric Andersen3443bd72003-07-22 07:30:36 +00001023 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001024 }
1025 else
1026 {
1027 /* ATAPI */
1028 if(eqpt != CDROM)
1029 if_printf((val[CAPAB_0] & SWRST_REQ),"\tATA sw reset required\n");
1030
1031 if(val[PKT_REL] || val[SVC_NBSY])
1032 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001033 printf("\tOverlap support:");
Glenn L McGrath07085852003-10-09 07:28:22 +00001034 if_printf(val[PKT_REL]," %uus to release bus.",val[PKT_REL]);
1035 if_printf(val[SVC_NBSY]," %uus to clear BSY after SERVICE cmd.",val[SVC_NBSY]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001036 printf("\n");
1037 }
1038 }
1039
1040 /* DMA stuff. Check that only one DMA mode is selected. */
1041 printf("\tDMA: ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001042 if(!(val[CAPAB_0] & DMA_SUP))
Eric Andersen3443bd72003-07-22 07:30:36 +00001043 printf("not supported\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001044 else
1045 {
1046 if_printf((val[DMA_MODE] && !val[SINGLE_DMA] && !val[MULTI_DMA]),
1047 " sdma%u\n",(val[DMA_MODE] & MODE) >> 8);
1048 if(val[SINGLE_DMA])
1049 {
1050 jj = val[SINGLE_DMA];
1051 kk = val[SINGLE_DMA] >> 8;
Eric Andersen3443bd72003-07-22 07:30:36 +00001052 err_dma += mode_loop(jj,kk,'s',&have_mode);
1053 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001054 if(val[MULTI_DMA])
1055 {
1056 jj = val[MULTI_DMA];
1057 kk = val[MULTI_DMA] >> 8;
Eric Andersen3443bd72003-07-22 07:30:36 +00001058 err_dma += mode_loop(jj,kk,'m',&have_mode);
1059 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001060 if((val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA])
1061 {
1062 jj = val[ULTRA_DMA];
1063 kk = val[ULTRA_DMA] >> 8;
Eric Andersen3443bd72003-07-22 07:30:36 +00001064 err_dma += mode_loop(jj,kk,'u',&have_mode);
1065 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001066 if_printf((err_dma || !have_mode),"(?)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001067 printf("\n");
1068
Glenn L McGrath07085852003-10-09 07:28:22 +00001069 if_printf(((dev == ATAPI_DEV) && (eqpt != CDROM) && (val[CAPAB_0] & DMA_IL_SUP)),
1070 "\t Interleaved DMA support\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001071
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001072 if((val[WHATS_VALID] & OK_W64_70) &&
Glenn L McGrath07085852003-10-09 07:28:22 +00001073 (val[DMA_TIME_MIN] || val[DMA_TIME_NORM]))
1074 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001075 printf("\t Cycle time:");
Glenn L McGrath07085852003-10-09 07:28:22 +00001076 if_printf(val[DMA_TIME_MIN]," min=%uns",val[DMA_TIME_MIN]);
1077 if_printf(val[DMA_TIME_NORM]," recommended=%uns",val[DMA_TIME_NORM]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001078 printf("\n");
1079 }
1080 }
1081
1082 /* Programmed IO stuff */
1083 printf("\tPIO: ");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001084 /* If a drive supports mode n (e.g. 3), it also supports all modes less
Eric Andersen3443bd72003-07-22 07:30:36 +00001085 * than n (e.g. 3, 2, 1 and 0). Print all the modes. */
Glenn L McGrath07085852003-10-09 07:28:22 +00001086 if((val[WHATS_VALID] & OK_W64_70) && (val[ADV_PIO_MODES] & PIO_SUP))
1087 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001088 jj = ((val[ADV_PIO_MODES] & PIO_SUP) << 3) | 0x0007;
Glenn L McGrath07085852003-10-09 07:28:22 +00001089 for(ii = 0; ii <= PIO_MODE_MAX ; ii++)
1090 {
1091 if_printf((jj & 0x0001),"pio%d ",ii);
Eric Andersen3443bd72003-07-22 07:30:36 +00001092 jj >>=1;
1093 }
1094 printf("\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001095 }
1096 else if(((min_std < 5) || (eqpt == CDROM)) && (val[PIO_MODE] & MODE) )
1097 {
1098 for(ii = 0; ii <= val[PIO_MODE]>>8; ii++)
Eric Andersen3443bd72003-07-22 07:30:36 +00001099 printf("pio%d ",ii);
Eric Andersen3443bd72003-07-22 07:30:36 +00001100 printf("\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001101 }
1102 else
1103 printf("unknown\n");
1104
1105 if(val[WHATS_VALID] & OK_W64_70)
1106 {
1107 if(val[PIO_NO_FLOW] || val[PIO_FLOW])
1108 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001109 printf("\t Cycle time:");
Glenn L McGrath07085852003-10-09 07:28:22 +00001110 if_printf(val[PIO_NO_FLOW]," no flow control=%uns", val[PIO_NO_FLOW]);
1111 if_printf(val[PIO_FLOW]," IORDY flow control=%uns", val[PIO_FLOW]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001112 printf("\n");
1113 }
1114 }
1115
Glenn L McGrath07085852003-10-09 07:28:22 +00001116 if((val[CMDS_SUPP_1] & VALID) == VALID_VAL)
1117 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001118 printf("Commands/features:\n\tEnabled\tSupported:\n");
1119 jj = val[CMDS_SUPP_0];
1120 kk = val[CMDS_EN_0];
Glenn L McGrath07085852003-10-09 07:28:22 +00001121 for(ii = 0; ii < NUM_CMD_FEAT_STR; ii++)
1122 {
1123 if((jj & 0x8000) && (*cmd_feat_str[ii] != '\0'))
1124 {
1125 if_else_printf((kk & 0x8000),"\t *","\t");
Eric Andersen3443bd72003-07-22 07:30:36 +00001126 printf("\t%s\n",cmd_feat_str[ii]);
1127 }
1128 jj <<=1; kk<<=1;
Glenn L McGrath07085852003-10-09 07:28:22 +00001129 if(ii%16 == 15)
1130 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001131 jj = val[CMDS_SUPP_0+1+(ii/16)];
1132 kk = val[CMDS_EN_0+1+(ii/16)];
1133 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001134 if(ii == 31)
1135 {
1136 if((val[CMDS_SUPP_2] & VALID) != VALID_VAL)
1137 ii +=16;
Eric Andersen3443bd72003-07-22 07:30:36 +00001138 }
1139 }
1140 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001141 if_printf(((val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP),
1142 "\tRemovable Media Status Notification feature set supported\n");
1143
1144
Eric Andersen3443bd72003-07-22 07:30:36 +00001145 /* security */
Glenn L McGrath07085852003-10-09 07:28:22 +00001146 if((eqpt != CDROM) && (like_std > 3) &&
1147 (val[SECU_STATUS] || val[ERASE_TIME] || val[ENH_ERASE_TIME]))
1148 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001149 printf("Security: \n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001150 if_printf((val[PSWD_CODE] && (val[PSWD_CODE] != NOVAL_1)),
1151 "\tMaster password revision code = %u\n",val[PSWD_CODE]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001152 jj = val[SECU_STATUS];
Glenn L McGrath07085852003-10-09 07:28:22 +00001153 if(jj)
1154 {
1155 for(ii = 0; ii < NUM_SECU_STR; ii++)
1156 {
1157 if_else_printf((!(jj & 0x0001)),"\tnot\t%s\n", "\t\t%s\n", secu_str[ii]);
Eric Andersen3443bd72003-07-22 07:30:36 +00001158 jj >>=1;
1159 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001160 if(val[SECU_STATUS] & SECU_ENABLED)
1161 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001162 printf("\tSecurity level ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001163 if_else_printf((val[SECU_STATUS] & SECU_LEVEL),"maximum\n","high\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001164 }
1165 }
1166 jj = val[ERASE_TIME] & ERASE_BITS;
1167 kk = val[ENH_ERASE_TIME] & ERASE_BITS;
Glenn L McGrath07085852003-10-09 07:28:22 +00001168 if(jj || kk)
1169 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001170 printf("\t");
Glenn L McGrath07085852003-10-09 07:28:22 +00001171 if_printf(jj,"%umin for SECURITY ERASE UNIT. ", jj==ERASE_BITS ? 508 : jj<<1);
1172 if_printf(kk,"%umin for ENHANCED SECURITY ERASE UNIT.", kk==ERASE_BITS ? 508 : kk<<1);
Eric Andersen3443bd72003-07-22 07:30:36 +00001173 printf("\n");
1174 }
1175 }
1176
1177 /* reset result */
Glenn L McGrath07085852003-10-09 07:28:22 +00001178 if((val[HWRST_RSLT] & VALID) == VALID_VAL)
1179 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001180 printf("HW reset results:\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001181 if_else_printf((val[HWRST_RSLT] & CBLID),"\tCBLID- above Vih\n","\tCBLID- below Vih\n");
1182
1183 if(val[HWRST_RSLT] & RST0)
1184 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001185 printf("\tDevice num = 0");
1186 jj = val[HWRST_RSLT];
Glenn L McGrath07085852003-10-09 07:28:22 +00001187 }
1188 else
1189 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001190 printf("\tDevice num = 1");
1191 jj = val[HWRST_RSLT] >> 8;
1192 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001193
1194 if((jj & DEV_DET) == JUMPER_VAL)
Eric Andersen3443bd72003-07-22 07:30:36 +00001195 printf(" determined by the jumper");
1196 else if((jj & DEV_DET) == CSEL_VAL)
1197 printf(" determined by CSEL");
1198 printf("\n");
1199 }
1200
1201 /* more stuff from std 5 */
Glenn L McGrath07085852003-10-09 07:28:22 +00001202 if((like_std > 4) && (eqpt != CDROM))
1203 {
1204 if(val[CFA_PWR_MODE] & VALID_W160)
1205 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001206 printf("CFA power mode 1:\n\t");
Glenn L McGrath07085852003-10-09 07:28:22 +00001207 if_else_printf((val[CFA_PWR_MODE] & PWR_MODE_OFF),"disabled","enabled");
1208
1209 if_printf((val[CFA_PWR_MODE] & PWR_MODE_REQ)," and required by some commands");
Eric Andersen3443bd72003-07-22 07:30:36 +00001210 printf("\n");
Glenn L McGrath07085852003-10-09 07:28:22 +00001211
1212 if_printf((val[CFA_PWR_MODE] & MAX_AMPS),"\tMaximum current = %uma\n",val[CFA_PWR_MODE] & MAX_AMPS);
Eric Andersen3443bd72003-07-22 07:30:36 +00001213 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001214 if((val[INTEGRITY] & SIG) == SIG_VAL)
1215 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001216 printf("Checksum: ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001217 if_printf(chksum,"in");
Eric Andersen3443bd72003-07-22 07:30:36 +00001218 printf("correct\n");
1219 }
1220 }
1221
1222 exit(0);
1223}
1224#endif
1225
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001226static int verbose, get_identity, get_geom, noisy = 1, quiet;
1227static int flagcount, do_flush, is_scsi_hd, is_xt_hd;
1228static int do_ctimings, do_timings;
Eric Andersen3443bd72003-07-22 07:30:36 +00001229
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001230static unsigned long set_readahead, get_readahead, Xreadahead;
1231static unsigned long set_readonly, get_readonly, readonly;
1232static unsigned long set_unmask, get_unmask, unmask;
1233static unsigned long set_mult, get_mult, mult;
Eric Andersenf1c56a92003-08-08 22:13:41 +00001234#ifdef CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001235static unsigned long set_dma, get_dma, dma;
Eric Andersenf1c56a92003-08-08 22:13:41 +00001236#endif
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001237static unsigned long set_dma_q, get_dma_q, dma_q;
1238static unsigned long set_nowerr, get_nowerr, nowerr;
1239static unsigned long set_keep, get_keep, keep;
1240static unsigned long set_io32bit, get_io32bit, io32bit;
1241static unsigned long set_piomode, noisy_piomode;
1242static int piomode;
Eric Andersen3443bd72003-07-22 07:30:36 +00001243#ifdef HDIO_DRIVE_CMD
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001244static unsigned long set_dkeep, get_dkeep, dkeep;
1245static unsigned long set_standby, get_standby, standby_requested;
1246static unsigned long set_xfermode, get_xfermode;
1247static int xfermode_requested;
1248static unsigned long set_lookahead, get_lookahead, lookahead;
1249static unsigned long set_prefetch, get_prefetch, prefetch;
1250static unsigned long set_defects, get_defects, defects;
1251static unsigned long set_wcache, get_wcache, wcache;
1252static unsigned long set_doorlock, get_doorlock, doorlock;
1253static unsigned long set_seagate, get_seagate;
1254static unsigned long set_standbynow, get_standbynow;
1255static unsigned long set_sleepnow, get_sleepnow;
1256static unsigned long get_powermode;
1257static unsigned long set_apmmode, get_apmmode, apmmode;
Eric Andersen3443bd72003-07-22 07:30:36 +00001258#endif
1259#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001260static int get_IDentity;
Eric Andersen3443bd72003-07-22 07:30:36 +00001261#endif
1262#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001263static int unregister_hwif;
1264static int hwif;
Eric Andersen3443bd72003-07-22 07:30:36 +00001265#endif
1266#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001267static int scan_hwif;
1268static int hwif_data;
1269static int hwif_ctrl;
1270static int hwif_irq;
Eric Andersen3443bd72003-07-22 07:30:36 +00001271#endif
1272#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001273static int set_busstate, get_busstate, busstate;
Eric Andersen3443bd72003-07-22 07:30:36 +00001274#endif
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001275static int reread_partn;
Eric Andersen3443bd72003-07-22 07:30:36 +00001276
1277#ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001278static int perform_reset;
Eric Andersen3443bd72003-07-22 07:30:36 +00001279#endif /* CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET */
1280#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001281static int perform_tristate, tristate;
Eric Andersen3443bd72003-07-22 07:30:36 +00001282#endif /* CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF */
1283
1284// Historically, if there was no HDIO_OBSOLETE_IDENTITY, then
1285// then the HDIO_GET_IDENTITY only returned 142 bytes.
1286// Otherwise, HDIO_OBSOLETE_IDENTITY returns 142 bytes,
1287// and HDIO_GET_IDENTITY returns 512 bytes. But the latest
1288// 2.5.xx kernels no longer define HDIO_OBSOLETE_IDENTITY
1289// (which they should, but they should just return -EINVAL).
1290//
1291// So.. we must now assume that HDIO_GET_IDENTITY returns 512 bytes.
1292// On a really old system, it will not, and we will be confused.
1293// Too bad, really.
1294
1295#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001296static const char * const cfg_str[] =
Eric Andersen3443bd72003-07-22 07:30:36 +00001297{ "", " HardSect", " SoftSect", " NotMFM",
1298 " HdSw>15uSec", " SpinMotCtl", " Fixed", " Removeable",
1299 " DTR<=5Mbs", " DTR>5Mbs", " DTR>10Mbs", " RotSpdTol>.5%",
1300 " dStbOff", " TrkOff", " FmtGapReq", " nonMagnetic"
1301};
1302
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001303static const char * const BuffType[] = {"unknown", "1Sect", "DualPort", "DualPortCache"};
Eric Andersen3443bd72003-07-22 07:30:36 +00001304
Eric Andersen3443bd72003-07-22 07:30:36 +00001305static void dump_identity (const struct hd_driveid *id)
1306{
1307 int i;
Rob Landley0a7c8ef2006-02-22 17:01:00 +00001308 char pmodes[64], dmodes[128], umodes[128];
Eric Andersen3443bd72003-07-22 07:30:36 +00001309 const unsigned short int *id_regs= (const void*) id;
1310 unsigned long capacity;
1311
Rob Landley0a7c8ef2006-02-22 17:01:00 +00001312 pmodes[0] = dmodes[0] = umodes[0] = '\0';
1313
Glenn L McGrath07085852003-10-09 07:28:22 +00001314 printf("\n Model=%.40s, FwRev=%.8s, SerialNo=%.20s\n Config={",
1315 id->model, id->fw_rev, id->serial_no);
1316 for (i=0; i<=15; i++)
1317 if_printf((id->config & (1<<i)),"%s", cfg_str[i]);
1318
1319 printf(" }\n RawCHS=%u/%u/%u, TrkSize=%u, SectSize=%u, ECCbytes=%u\n",
1320 id->cyls, id->heads, id->sectors, id->track_bytes,
1321 id->sector_bytes, id->ecc_bytes);
1322
1323 if (id->buf_type > 3)
1324 printf("%s%u", " BuffType=", id->buf_type);
1325 else
1326 printf("%s%s", " BuffType=", BuffType[id->buf_type]);
1327
Eric Andersen3443bd72003-07-22 07:30:36 +00001328 printf(", BuffSize=%ukB, MaxMultSect=%u", id->buf_size/2, id->max_multsect);
Glenn L McGrath07085852003-10-09 07:28:22 +00001329 if (id->max_multsect)
1330 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001331 printf(", MultSect=");
1332 if (!(id->multsect_valid&1))
1333 printf("?%u?", id->multsect);
1334 else if (id->multsect)
1335 printf("%u", id->multsect);
1336 else
1337 printf("off");
1338 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001339 printf("\n");
1340 if (id->tPIO <= 5)
1341 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001342 strcat(pmodes, "pio0 ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001343 if_strcat((id->tPIO >= 1), pmodes, "pio1 ");
1344 if_strcat((id->tPIO >= 2), pmodes, "pio2 ");
1345
Eric Andersen3443bd72003-07-22 07:30:36 +00001346 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001347 if_printf((!(id->field_valid&1))," (maybe):");
Eric Andersen3443bd72003-07-22 07:30:36 +00001348#if __BYTE_ORDER == __BIG_ENDIAN
1349 capacity = (id->cur_capacity0 << 16) | id->cur_capacity1;
1350#else
1351 capacity = (id->cur_capacity1 << 16) | id->cur_capacity0;
1352#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001353 printf(" CurCHS=%u/%u/%u, CurSects=%lu, LBA=%s",id->cur_cyls, id->cur_heads,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001354 id->cur_sectors, capacity ,
1355 ((id->capability&2)==0)?"no":"yes");
Eric Andersen3443bd72003-07-22 07:30:36 +00001356
Glenn L McGrath07085852003-10-09 07:28:22 +00001357 if_printf((id->capability&2),", LBAsects=%u", id->lba_capacity);
1358
1359 if (id->capability&1)
1360 {
1361 if (id->dma_1word | id->dma_mword)
1362 {
1363 if_strcat((id->dma_1word & 0x100), dmodes, "*");
1364 if_strcat((id->dma_1word & 1), dmodes, "sdma0 ");
1365 if_strcat((id->dma_1word & 0x200), dmodes, "*");
1366 if_strcat((id->dma_1word & 2), dmodes, "sdma1 ");
1367 if_strcat((id->dma_1word & 0x400), dmodes, "*");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001368 if_strcat((id->dma_1word & 4), dmodes, "sdma2 ");
Glenn L McGrath07085852003-10-09 07:28:22 +00001369 if_strcat((id->dma_1word & 0xf800), dmodes, "*");
1370 if_strcat((id->dma_1word & 0xf8), dmodes, "sdma? ");
1371 if_strcat((id->dma_mword & 0x100), dmodes, "*");
1372 if_strcat((id->dma_mword & 1), dmodes, "mdma0 ");
1373 if_strcat((id->dma_mword & 0x200), dmodes, "*");
1374 if_strcat((id->dma_mword & 2), dmodes, "mdma1 ");
1375 if_strcat((id->dma_mword & 0x400), dmodes, "*");
1376 if_strcat((id->dma_mword & 4), dmodes, "mdma2 ");
1377 if_strcat((id->dma_mword & 0xf800), dmodes, "*");
1378 if_strcat((id->dma_mword & 0xf8), dmodes, "mdma? ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001379 }
1380 }
1381 printf("\n IORDY=");
1382 if (id->capability&8)
1383 printf((id->capability&4) ? "on/off" : "yes");
1384 else
1385 printf("no");
Eric Andersen3443bd72003-07-22 07:30:36 +00001386
Glenn L McGrath07085852003-10-09 07:28:22 +00001387 if ((id->capability&8) || (id->field_valid&2))
1388 {
1389 if (id->field_valid&2)
1390 {
1391 printf(", tPIO={min:%u,w/IORDY:%u}", id->eide_pio, id->eide_pio_iordy);
1392 if_strcat((id->eide_pio_modes & 1), pmodes, "pio3 ");
1393 if_strcat((id->eide_pio_modes & 2), pmodes, "pio4 ");
1394 if_strcat((id->eide_pio_modes &~3), pmodes, "pio? ");
1395 }
1396 if (id->field_valid&4)
1397 {
1398 if_strcat((id->dma_ultra & 0x100),umodes,"*");
1399 if_strcat((id->dma_ultra & 0x001),umodes,"udma0 ");
1400 if_strcat((id->dma_ultra & 0x200),umodes,"*");
1401 if_strcat((id->dma_ultra & 0x002),umodes,"udma1 ");
1402 if_strcat((id->dma_ultra & 0x400),umodes,"*");
1403 if_strcat((id->dma_ultra & 0x004),umodes,"udma2 ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001404#ifdef __NEW_HD_DRIVE_ID
Glenn L McGrath07085852003-10-09 07:28:22 +00001405 if (id->hw_config & 0x2000)
1406 {
1407#else /* !__NEW_HD_DRIVE_ID */
1408 if (id->word93 & 0x2000)
1409 {
1410#endif /* __NEW_HD_DRIVE_ID */
1411 if_strcat((id->dma_ultra & 0x0800),umodes,"*");
1412 if_strcat((id->dma_ultra & 0x0008),umodes,"udma3 ");
1413 if_strcat((id->dma_ultra & 0x1000),umodes,"*");
1414 if_strcat((id->dma_ultra & 0x0010),umodes,"udma4 ");
1415 if_strcat((id->dma_ultra & 0x2000),umodes,"*");
1416 if_strcat((id->dma_ultra & 0x0020),umodes,"udma5 ");
1417 if_strcat((id->dma_ultra & 0x4000),umodes,"*");
1418 if_strcat((id->dma_ultra & 0x0040),umodes,"udma6 ");
1419 if_strcat((id->dma_ultra & 0x8000),umodes,"*");
1420 if_strcat((id->dma_ultra & 0x0080),umodes,"udma7 ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001421 }
1422 }
1423 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001424 if_printf(((id->capability&1) && (id->field_valid&2)),
1425 ", tDMA={min:%u,rec:%u}", id->eide_dma_min, id->eide_dma_time);
1426 printf("\n PIO modes: %s", pmodes);
1427 if_printf((*dmodes),"\n DMA modes: %s", dmodes);
1428 if_printf((*umodes),"\n UDMA modes: %s", umodes);
1429
1430 printf("\n AdvancedPM=%s",((id_regs[83]&8)==0)?"no":"yes");
1431 if (id_regs[83] & 8)
1432 {
1433 if (!(id_regs[86]&8))
1434 printf(": disabled (255)");
1435 else if ((id_regs[91]&0xFF00)!=0x4000)
1436 printf(": unknown setting");
1437 else
1438 printf(": mode=0x%02X (%u)",id_regs[91]&0xFF,id_regs[91]&0xFF);
1439 }
1440 if_printf( (id_regs[82]&0x20)," WriteCache=%s",(id_regs[85]&0x20) ? "enabled" : "disabled");
1441#ifdef __NEW_HD_DRIVE_ID
1442 if ((id->minor_rev_num && id->minor_rev_num <= 31) || (id->major_rev_num && id->minor_rev_num <= 31))
1443 {
1444 printf("\n Drive conforms to: ");
1445 if_else_printf((id->minor_rev_num <= 31),"%s: ","unknown: ", minor_str[id->minor_rev_num]);
1446 if (id->major_rev_num < 31)
1447 {
1448 for (i=0; i <= 15; i++)
1449 if_printf((id->major_rev_num & (1<<i))," %u", i);
1450 }
1451 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001452#endif /* __NEW_HD_DRIVE_ID */
Glenn L McGrath07085852003-10-09 07:28:22 +00001453 printf("\n\n * signifies the current active mode\n\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001454}
1455#endif
1456
1457static void flush_buffer_cache (int fd)
1458{
1459 fsync (fd); /* flush buffers */
Glenn L McGrath07085852003-10-09 07:28:22 +00001460 bb_ioctl(fd, BLKFLSBUF, NULL,"BLKFLSBUF" ) ;/* do it again, big time */
Eric Andersen3443bd72003-07-22 07:30:36 +00001461#ifdef HDIO_DRIVE_CMD
Glenn L McGrath07085852003-10-09 07:28:22 +00001462 sleep(1);
1463 if (ioctl(fd, HDIO_DRIVE_CMD, NULL) && errno != EINVAL) /* await completion */
Eric Andersen06d4ec22004-03-19 10:53:52 +00001464 bb_perror_msg("HDIO_DRIVE_CMD");
Eric Andersen3443bd72003-07-22 07:30:36 +00001465#endif
1466}
1467
1468static int seek_to_zero (int fd)
1469{
Glenn L McGrath07085852003-10-09 07:28:22 +00001470 if (lseek(fd, (off_t) 0, SEEK_SET))
Eric Andersen3443bd72003-07-22 07:30:36 +00001471 return 1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001472 return 0;
1473}
1474
1475static int read_big_block (int fd, char *buf)
1476{
Glenn L McGrath07085852003-10-09 07:28:22 +00001477
1478 const char *string;
Eric Andersen3443bd72003-07-22 07:30:36 +00001479 int i, rc;
Glenn L McGrath07085852003-10-09 07:28:22 +00001480 if ((rc = read(fd, buf, TIMING_BUF_BYTES)) != TIMING_BUF_BYTES)
1481 {
1482 switch(rc)
1483 {
1484 case -1:
1485 string = "read()";
1486 break;
1487 case 0:
1488 string = "read() hit EOF - device too small";
1489 break;
1490 default:
1491 string = "read(%u) returned %u bytes";
Eric Andersen3443bd72003-07-22 07:30:36 +00001492 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001493 bb_error_msg(string, TIMING_BUF_BYTES, rc);
Eric Andersen3443bd72003-07-22 07:30:36 +00001494 return 1;
1495 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001496
Eric Andersen3443bd72003-07-22 07:30:36 +00001497 /* access all sectors of buf to ensure the read fully completed */
1498 for (i = 0; i < TIMING_BUF_BYTES; i += 512)
1499 buf[i] &= 1;
1500 return 0;
1501}
1502
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00001503static double correction;
Eric Andersen50af12d2003-08-06 08:47:59 +00001504
Eric Andersen06d4ec22004-03-19 10:53:52 +00001505static void do_time (int flag, int fd)
Glenn L McGrath07085852003-10-09 07:28:22 +00001506/*
1507 flag = 0 time_cache
1508 flag = 1 time_device
1509*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001510{
Eric Andersen50af12d2003-08-06 08:47:59 +00001511 int i;
Eric Andersen3443bd72003-07-22 07:30:36 +00001512 char *buf;
1513 double elapsed;
1514 struct itimerval e1, e2;
1515 int shmid;
Eric Andersen50af12d2003-08-06 08:47:59 +00001516 int timing_MB = TIMING_MB;
Eric Andersen3443bd72003-07-22 07:30:36 +00001517
Glenn L McGrath07085852003-10-09 07:28:22 +00001518 if ((shmid = shmget(IPC_PRIVATE, TIMING_BUF_BYTES, 0600)) == -1)
1519 {
1520 bb_error_msg (bb_msg_shared_mem,"allocate"); /*"could not allocate sharedmem buf"*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001521 return;
1522 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001523 if (shmctl(shmid, SHM_LOCK, NULL) == -1)
1524 {
1525 bb_error_msg (bb_msg_shared_mem,"lock"); /*"could not lock sharedmem buf"*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001526 (void) shmctl(shmid, IPC_RMID, NULL);
1527 return;
1528 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001529 if ((buf = shmat(shmid, (char *) 0, 0)) == (char *) -1)
1530 {
1531 bb_error_msg (bb_msg_shared_mem,"attach"); /*"could not attach sharedmem buf"*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001532 (void) shmctl(shmid, IPC_RMID, NULL);
1533 return;
1534 }
1535 if (shmctl(shmid, IPC_RMID, NULL) == -1)
Glenn L McGrath07085852003-10-09 07:28:22 +00001536 bb_error_msg ("shmctl(,IPC_RMID,)");
Eric Andersen3443bd72003-07-22 07:30:36 +00001537
1538 /* Clear out the device request queues & give them time to complete */
Glenn L McGrath07085852003-10-09 07:28:22 +00001539 sync_and_sleep(3);
Eric Andersen3443bd72003-07-22 07:30:36 +00001540
Glenn L McGrath07085852003-10-09 07:28:22 +00001541 if(flag == 0) /* Time cache */
1542 {
1543 /* Calculate a correction factor for the basic
1544 * overhead of doing a read() from the buffer cache.
1545 * To do this, we read the data once to "cache it" and
1546 * to force full preallocation of our timing buffer,
1547 * and then we re-read it 10 times while timing it.
1548 *
1549 * getitimer() is used rather than gettimeofday() because
1550 * it is much more consistent (on my machine, at least).
1551 */
1552 setitimer(ITIMER_REAL, &(struct itimerval){{1000,0},{1000,0}}, NULL);
1553 if (seek_to_zero (fd))
1554 return;
1555 if (read_big_block (fd, buf))
1556 return;
1557 printf(" Timing buffer-cache reads: ");
1558 fflush(stdout);
Eric Andersen3443bd72003-07-22 07:30:36 +00001559
Glenn L McGrath07085852003-10-09 07:28:22 +00001560 /* Clear out the device request queues & give them time to complete */
1561 sync_and_sleep(1);
Eric Andersen3443bd72003-07-22 07:30:36 +00001562
Glenn L McGrath07085852003-10-09 07:28:22 +00001563 /* Time re-reading from the buffer-cache */
1564 getitimer(ITIMER_REAL, &e1);
1565 for (i = (BUFCACHE_FACTOR * TIMING_BUF_COUNT) ; i > 0; --i)
1566 {
1567 if (seek_to_zero (fd))
1568 goto quit;
1569 if (read_big_block (fd, buf))
1570 goto quit;
1571 }
1572 getitimer(ITIMER_REAL, &e2);
1573 correction = (e1.it_value.tv_sec - e2.it_value.tv_sec) + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
Eric Andersen3443bd72003-07-22 07:30:36 +00001574
Glenn L McGrath07085852003-10-09 07:28:22 +00001575 /* Now remove the lseek() from the correction factor */
1576 getitimer(ITIMER_REAL, &e1);
1577 for (i = (BUFCACHE_FACTOR * TIMING_BUF_COUNT) ; i > 0; --i)
1578 {
1579 if (seek_to_zero (fd))
1580 goto quit;
1581 }
1582 getitimer(ITIMER_REAL, &e2);
1583 correction -= (e1.it_value.tv_sec - e2.it_value.tv_sec)
1584 + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
Eric Andersen50af12d2003-08-06 08:47:59 +00001585
Glenn L McGrath07085852003-10-09 07:28:22 +00001586 if ((BUFCACHE_FACTOR * timing_MB) >= correction) /* more than 1MB/s */
Eric Andersen50af12d2003-08-06 08:47:59 +00001587 printf("%2d MB in %5.2f seconds =%6.2f MB/sec\n",
Glenn L McGrath07085852003-10-09 07:28:22 +00001588 (BUFCACHE_FACTOR * timing_MB), correction,
1589 (BUFCACHE_FACTOR * timing_MB) / correction);
Eric Andersen50af12d2003-08-06 08:47:59 +00001590 else
1591 printf("%2d MB in %5.2f seconds =%6.2f kB/sec\n",
Glenn L McGrath07085852003-10-09 07:28:22 +00001592 (BUFCACHE_FACTOR * timing_MB), correction,
1593 (BUFCACHE_FACTOR * timing_MB) / correction * 1024);
1594 correction /= BUFCACHE_FACTOR;
1595
1596 flush_buffer_cache(fd);
1597 sleep(1);
Eric Andersen50af12d2003-08-06 08:47:59 +00001598 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001599 else /* Time device */
1600 {
1601 printf(" Timing buffered disk reads: ");
1602 fflush(stdout);
1603
1604 /*
1605 * getitimer() is used rather than gettimeofday() because
1606 * it is much more consistent (on my machine, at least).
1607 */
1608 setitimer(ITIMER_REAL, &(struct itimerval){{1000,0},{1000,0}}, NULL);
1609
1610 /* Now do the timings for real */
1611 getitimer(ITIMER_REAL, &e1);
1612 for (i = TIMING_BUF_COUNT; i > 0; --i)
1613 {
1614 if (read_big_block (fd, buf))
1615 goto quit;
1616 }
1617 getitimer(ITIMER_REAL, &e2);
1618
1619 elapsed = (e1.it_value.tv_sec - e2.it_value.tv_sec) + ((e1.it_value.tv_usec - e2.it_value.tv_usec) / 1000000.0);
1620
1621 if (timing_MB >= elapsed) /* more than 1MB/s */
1622 printf("%2d MB in %5.2f seconds =%6.2f MB/sec\n",timing_MB, elapsed, timing_MB / elapsed);
1623 else
1624 printf("%2d MB in %5.2f seconds =%6.2f kB/sec\n",timing_MB, elapsed, timing_MB / elapsed * 1024);
1625
1626 /*"Hmm.. suspicious results: probably not enough free memory for a proper test.");*/
1627 if (elapsed <= (correction * 2))
1628 bb_error_msg(bb_msg_memory_exhausted);
1629
1630#if 0 /* the "estimate" is just plain wrong for many systems.. */
1631 else if (correction != 0.0) {
1632 printf(" Estimating raw driver speed: ");
1633 elapsed -= correction;
1634 if (timing_MB >= elapsed) /* more than 1MB/s */
1635 printf("%2d MB in %5.2f seconds =%6.2f MB/sec\n",
1636 timing_MB, elapsed, timing_MB / elapsed);
1637 else
1638 printf("%2d MB in %5.2f seconds =%6.2f kB/sec\n",
1639 timing_MB, elapsed, timing_MB / elapsed * 1024);
1640 }
Eric Andersen50af12d2003-08-06 08:47:59 +00001641#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001642 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001643quit:
1644 if (-1 == shmdt(buf))
Glenn L McGrath07085852003-10-09 07:28:22 +00001645 bb_error_msg (bb_msg_shared_mem,"detach"); /*"could not detach sharedmem buf"*/
Eric Andersen3443bd72003-07-22 07:30:36 +00001646}
1647
Glenn L McGrath07085852003-10-09 07:28:22 +00001648
Eric Andersen3443bd72003-07-22 07:30:36 +00001649static void no_scsi (void)
1650{
Glenn L McGrath07085852003-10-09 07:28:22 +00001651 /*" operation not supported on SCSI disks"*/
1652 if (is_scsi_hd)
1653 bb_error_msg_and_die(bb_msg_op_not_supp,"SCSI");
Eric Andersen3443bd72003-07-22 07:30:36 +00001654}
1655
1656static void no_xt (void)
1657{
Glenn L McGrath07085852003-10-09 07:28:22 +00001658 if (is_xt_hd)
1659 bb_error_msg_and_die(bb_msg_op_not_supp,"XT");
Eric Andersen3443bd72003-07-22 07:30:36 +00001660}
1661
1662static void on_off (unsigned int value)
1663{
1664 printf(value ? " (on)\n" : " (off)\n");
1665}
1666
1667#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
1668static void bus_state_value (unsigned int value)
1669{
1670 const char *string;
1671
Glenn L McGrath07085852003-10-09 07:28:22 +00001672 switch (value)
1673 {
1674 case BUSSTATE_ON:
1675 string = " (on)\n";
1676 break;
1677 case BUSSTATE_OFF:
1678 string = " (off)\n";
1679 break;
1680 case BUSSTATE_TRISTATE:
1681 string = " (tristate)\n";
1682 break;
1683 default:
1684 string = " (unknown: %d)\n";
1685 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001686 }
1687 printf(string, value);
1688}
1689#endif
1690
1691#ifdef HDIO_DRIVE_CMD
1692static void interpret_standby (unsigned int standby)
1693{
1694 printf(" (");
Glenn L McGrath07085852003-10-09 07:28:22 +00001695 switch(standby)
1696 {
1697 case 0:
1698 printf("off");
1699 break;
1700 case 252:
1701 printf("21 minutes");
1702 break;
1703 case 253:
1704 printf("vendor-specific");
1705 break;
1706 case 254:
1707 printf("?reserved");
1708 break;
1709 case 255:
1710 printf("21 minutes + 15 seconds");
1711 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001712 default:
Glenn L McGrath07085852003-10-09 07:28:22 +00001713 if (standby <= 240)
1714 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001715 unsigned int secs = standby * 5;
1716 unsigned int mins = secs / 60;
1717 secs %= 60;
Glenn L McGrath07085852003-10-09 07:28:22 +00001718 if_printf(mins,"%u minutes", mins);
1719 if_printf((mins && secs)," + ");
1720 if_printf(secs,"%u seconds", secs);
1721 }
1722 else if (standby <= 251)
1723 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001724 unsigned int mins = (standby - 240) * 30;
1725 unsigned int hrs = mins / 60;
1726 mins %= 60;
Glenn L McGrath07085852003-10-09 07:28:22 +00001727 if_printf(hrs,"%u hours", hrs);
1728 if_printf((hrs && mins)," + ");
1729 if_printf(mins,"%u minutes", mins);
1730 }
1731 else
Eric Andersen3443bd72003-07-22 07:30:36 +00001732 printf("illegal value");
1733 break;
1734 }
1735 printf(")\n");
1736}
1737
1738struct xfermode_entry {
1739 int val;
1740 const char *name;
1741};
1742
1743static const struct xfermode_entry xfermode_table[] = {
1744 { 8, "pio0" },
1745 { 9, "pio1" },
1746 { 10, "pio2" },
1747 { 11, "pio3" },
1748 { 12, "pio4" },
1749 { 13, "pio5" },
1750 { 14, "pio6" },
1751 { 15, "pio7" },
1752 { 16, "sdma0" },
1753 { 17, "sdma1" },
1754 { 18, "sdma2" },
1755 { 19, "sdma3" },
1756 { 20, "sdma4" },
1757 { 21, "sdma5" },
1758 { 22, "sdma6" },
1759 { 23, "sdma7" },
1760 { 32, "mdma0" },
1761 { 33, "mdma1" },
1762 { 34, "mdma2" },
1763 { 35, "mdma3" },
1764 { 36, "mdma4" },
1765 { 37, "mdma5" },
1766 { 38, "mdma6" },
1767 { 39, "mdma7" },
1768 { 64, "udma0" },
1769 { 65, "udma1" },
1770 { 66, "udma2" },
1771 { 67, "udma3" },
1772 { 68, "udma4" },
1773 { 69, "udma5" },
1774 { 70, "udma6" },
1775 { 71, "udma7" },
1776 { 0, NULL }
1777};
1778
1779static int translate_xfermode(char * name)
1780{
Glenn L McGrath07085852003-10-09 07:28:22 +00001781 const struct xfermode_entry *tmp;
1782 char *endptr;
1783 int val = -1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001784
1785
Glenn L McGrath07085852003-10-09 07:28:22 +00001786 for (tmp = xfermode_table; tmp->name != NULL; ++tmp)
1787 {
1788 if (!strcmp(name, tmp->name))
1789 return tmp->val;
Eric Andersen3443bd72003-07-22 07:30:36 +00001790
Glenn L McGrath07085852003-10-09 07:28:22 +00001791 }
Eric Andersen3443bd72003-07-22 07:30:36 +00001792
Glenn L McGrath07085852003-10-09 07:28:22 +00001793 val = strtol(name, &endptr, 10);
1794 if (*endptr == '\0')
1795 return val;
1796
1797 return -1;
Eric Andersen3443bd72003-07-22 07:30:36 +00001798}
1799
1800static void interpret_xfermode (unsigned int xfermode)
1801{
1802 printf(" (");
1803 switch(xfermode) {
Glenn L McGrath07085852003-10-09 07:28:22 +00001804 case 0:
1805 printf("default PIO mode");
1806 break;
1807 case 1:
1808 printf("default PIO mode, disable IORDY");
1809 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001810 case 8:
1811 case 9:
1812 case 10:
1813 case 11:
1814 case 12:
1815 case 13:
1816 case 14:
Glenn L McGrath07085852003-10-09 07:28:22 +00001817 case 15:
1818 printf("PIO flow control mode%u", xfermode-8);
1819 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001820 case 16:
1821 case 17:
1822 case 18:
1823 case 19:
1824 case 20:
1825 case 21:
1826 case 22:
Glenn L McGrath07085852003-10-09 07:28:22 +00001827 case 23:
1828 printf("singleword DMA mode%u", xfermode-16);
1829 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001830 case 32:
1831 case 33:
1832 case 34:
1833 case 35:
1834 case 36:
1835 case 37:
1836 case 38:
Glenn L McGrath07085852003-10-09 07:28:22 +00001837 case 39:
1838 printf("multiword DMA mode%u", xfermode-32);
1839 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001840 case 64:
1841 case 65:
1842 case 66:
1843 case 67:
1844 case 68:
1845 case 69:
1846 case 70:
Glenn L McGrath07085852003-10-09 07:28:22 +00001847 case 71:
1848 printf("UltraDMA mode%u", xfermode-64);
1849 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001850 default:
Glenn L McGrath07085852003-10-09 07:28:22 +00001851 printf("unknown, probably not valid");
1852 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001853 }
1854 printf(")\n");
1855}
1856#endif /* HDIO_DRIVE_CMD */
1857
1858#ifndef VXVM_MAJOR
1859#define VXVM_MAJOR 199
1860#endif
1861
1862#ifndef CCISS_MAJOR
1863#define CCISS_MAJOR 104
1864#endif
1865
1866static void process_dev (char *devname)
1867{
1868 int fd;
1869 static long parm, multcount;
1870 struct stat stat_buf;
1871#ifndef HDIO_DRIVE_CMD
1872 int force_operation = 0;
1873#endif
1874 if (stat(devname,&stat_buf))
1875 bb_perror_msg_and_die(devname);
1876
Glenn L McGrath07085852003-10-09 07:28:22 +00001877 switch(major(stat_buf.st_rdev))
1878 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001879#ifdef SCSI_DISK0_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001880 case (SCSI_DISK0_MAJOR):
1881 case (SCSI_DISK1_MAJOR):
1882 case (SCSI_DISK2_MAJOR):
1883 case (SCSI_DISK3_MAJOR):
1884 case (SCSI_DISK4_MAJOR):
1885 case (SCSI_DISK5_MAJOR):
1886 case (SCSI_DISK6_MAJOR):
1887 case (SCSI_DISK7_MAJOR):
Eric Andersen3443bd72003-07-22 07:30:36 +00001888#else
Glenn L McGrath07085852003-10-09 07:28:22 +00001889 case (SCSI_DISK_MAJOR):
Eric Andersen3443bd72003-07-22 07:30:36 +00001890#endif
1891#ifdef MD_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001892 case (MD_MAJOR):
Eric Andersen3443bd72003-07-22 07:30:36 +00001893#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001894 case (VXVM_MAJOR):
Eric Andersen3443bd72003-07-22 07:30:36 +00001895#ifdef LVM_BLK_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001896 case (LVM_BLK_MAJOR):
Eric Andersen3443bd72003-07-22 07:30:36 +00001897#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001898 case (CCISS_MAJOR):
1899 is_scsi_hd = 1;
1900 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001901#ifdef XT_DISK_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001902 case (XT_DISK_MAJOR):
1903 is_xt_hd = 1;
1904 break;
Eric Andersen3443bd72003-07-22 07:30:36 +00001905#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001906 case IDE0_MAJOR:
1907 case IDE1_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001908#ifdef IDE2_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001909 case IDE2_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001910#endif
1911#ifdef IDE3_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001912 case IDE3_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001913#endif
1914#ifdef IDE4_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001915 case IDE4_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001916#endif
1917#ifdef IDE5_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001918 case IDE5_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001919#endif
1920#ifdef IDE6_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001921 case IDE6_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001922#endif
1923#ifdef IDE7_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001924 case IDE7_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001925#endif
1926#ifdef IDE8_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001927 case IDE8_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001928#endif
1929#ifdef IDE9_MAJOR
Glenn L McGrath07085852003-10-09 07:28:22 +00001930 case IDE9_MAJOR:
Eric Andersen3443bd72003-07-22 07:30:36 +00001931#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001932 break; /* do nothing */
1933 default:
1934 bb_error_msg_and_die("%s not supported",devname);
Eric Andersen3443bd72003-07-22 07:30:36 +00001935 }
1936
Glenn L McGrath07085852003-10-09 07:28:22 +00001937 fd = bb_xopen (devname, O_RDONLY|O_NONBLOCK);
1938 if_printf( (!quiet),"\n%s:\n", devname);
Eric Andersen3443bd72003-07-22 07:30:36 +00001939
Glenn L McGrath07085852003-10-09 07:28:22 +00001940 if (set_readahead)
1941 {
Eric Andersenf828da02004-07-20 22:53:59 +00001942 if_printf(get_readahead," setting fs readahead to %ld\n", Xreadahead);
1943 bb_ioctl(fd, BLKRASET,(int *)Xreadahead,"BLKRASET");
Eric Andersen3443bd72003-07-22 07:30:36 +00001944 }
1945#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
Glenn L McGrath07085852003-10-09 07:28:22 +00001946 if (unregister_hwif)
1947 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001948 no_scsi();
1949 printf(" attempting to unregister hwif#%u\n", hwif);
Eric Andersena68ea1c2006-01-30 22:48:39 +00001950 bb_ioctl(fd, HDIO_UNREGISTER_HWIF,(int *)(unsigned long)hwif,"HDIO_UNREGISTER_HWIF");
Eric Andersen3443bd72003-07-22 07:30:36 +00001951 }
1952#endif
1953#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
Glenn L McGrath07085852003-10-09 07:28:22 +00001954 if (scan_hwif)
1955 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001956 int args[3];
1957 no_scsi();
1958 printf(" attempting to scan hwif (0x%x, 0x%x, %u)\n", hwif_data, hwif_ctrl, hwif_irq);
1959 args[0] = hwif_data;
1960 args[1] = hwif_ctrl;
1961 args[2] = hwif_irq;
Glenn L McGrath07085852003-10-09 07:28:22 +00001962 bb_ioctl(fd, HDIO_SCAN_HWIF, args, "HDIO_SCAN_HWIF");
Eric Andersen3443bd72003-07-22 07:30:36 +00001963 }
1964#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00001965 if (set_piomode)
1966 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001967 no_scsi();
1968 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00001969
1970 if (noisy_piomode)
1971 {
1972 printf(" attempting to ");
Eric Andersen3443bd72003-07-22 07:30:36 +00001973 if (piomode == 255)
Glenn L McGrath07085852003-10-09 07:28:22 +00001974 printf("auto-tune PIO mode\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00001975 else if (piomode < 100)
Glenn L McGrath07085852003-10-09 07:28:22 +00001976 printf("set PIO mode to %d\n", piomode);
Eric Andersen3443bd72003-07-22 07:30:36 +00001977 else if (piomode < 200)
Glenn L McGrath07085852003-10-09 07:28:22 +00001978 printf("set MDMA mode to %d\n", (piomode-100));
Eric Andersen3443bd72003-07-22 07:30:36 +00001979 else
Glenn L McGrath07085852003-10-09 07:28:22 +00001980 printf("set UDMA mode to %d\n", (piomode-200));
Eric Andersen3443bd72003-07-22 07:30:36 +00001981 }
Eric Andersena68ea1c2006-01-30 22:48:39 +00001982 bb_ioctl(fd, HDIO_SET_PIO_MODE, (int *)(unsigned long)piomode, "HDIO_SET_PIO_MODE");
Eric Andersen3443bd72003-07-22 07:30:36 +00001983 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001984 if (set_io32bit)
1985 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001986 no_scsi();
1987 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00001988 if_printf(get_io32bit," setting 32-bit IO_support flag to %ld\n", io32bit);
1989 bb_ioctl(fd, HDIO_SET_32BIT, (int *)io32bit, "HDIO_SET_32BIT");
Eric Andersen3443bd72003-07-22 07:30:36 +00001990 }
Glenn L McGrath07085852003-10-09 07:28:22 +00001991 if (set_mult)
1992 {
Eric Andersen3443bd72003-07-22 07:30:36 +00001993 no_scsi();
1994 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00001995 if_printf(get_mult, " setting multcount to %ld\n", mult);
1996 if(ioctl(fd, HDIO_SET_MULTCOUNT, mult))
Eric Andersen06d4ec22004-03-19 10:53:52 +00001997 bb_perror_msg("HDIO_SET_MULTCOUNT");
Eric Andersen3443bd72003-07-22 07:30:36 +00001998#ifndef HDIO_DRIVE_CMD
Glenn L McGrath07085852003-10-09 07:28:22 +00001999 else
2000 force_operation = 1;
Eric Andersen3443bd72003-07-22 07:30:36 +00002001#endif
2002 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002003 if (set_readonly)
2004 {
2005 if_printf_on_off(get_readonly," setting readonly to %ld", readonly);
2006 bb_ioctl(fd, BLKROSET, &readonly, "BLKROSET");
Eric Andersen3443bd72003-07-22 07:30:36 +00002007 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002008 if (set_unmask)
2009 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002010 no_scsi();
2011 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002012 if_printf_on_off(get_unmask," setting unmaskirq to %ld", unmask);
2013 bb_ioctl(fd, HDIO_SET_UNMASKINTR, (int *)unmask, "HDIO_SET_UNMASKINTR");
Eric Andersen3443bd72003-07-22 07:30:36 +00002014 }
Eric Andersen0a57a792003-08-06 08:57:35 +00002015#ifdef CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
Glenn L McGrath07085852003-10-09 07:28:22 +00002016 if (set_dma)
2017 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002018 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002019 if_printf_on_off(get_dma," setting using_dma to %ld", dma);
2020 bb_ioctl(fd, HDIO_SET_DMA, (int *)dma, "HDIO_SET_DMA");
Eric Andersen3443bd72003-07-22 07:30:36 +00002021 }
Eric Andersen0a57a792003-08-06 08:57:35 +00002022#endif /* CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA */
Glenn L McGrath07085852003-10-09 07:28:22 +00002023 if (set_dma_q)
2024 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002025 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002026 if_printf_on_off(get_dma_q," setting DMA queue_depth to %ld", dma_q);
2027 bb_ioctl(fd, HDIO_SET_QDMA, (int *)dma_q, "HDIO_SET_QDMA");
Eric Andersen3443bd72003-07-22 07:30:36 +00002028 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002029 if (set_nowerr)
2030 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002031 no_scsi();
2032 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002033 if_printf_on_off(get_nowerr," setting nowerr to %ld", nowerr);
2034 bb_ioctl(fd, HDIO_SET_NOWERR, (int *)nowerr,"HDIO_SET_NOWERR");
Eric Andersen3443bd72003-07-22 07:30:36 +00002035 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002036 if (set_keep)
2037 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002038 no_scsi();
2039 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002040 if_printf_on_off(get_keep," setting keep_settings to %ld", keep);
2041 bb_ioctl(fd, HDIO_SET_KEEPSETTINGS, (int *)keep,"HDIO_SET_KEEPSETTINGS");
Eric Andersen3443bd72003-07-22 07:30:36 +00002042 }
2043#ifdef HDIO_DRIVE_CMD
Glenn L McGrath07085852003-10-09 07:28:22 +00002044 if (set_doorlock)
2045 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002046 unsigned char args[4] = {0,0,0,0};
2047 no_scsi();
2048 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002049
Eric Andersen3443bd72003-07-22 07:30:36 +00002050 args[0] = doorlock ? WIN_DOORLOCK : WIN_DOORUNLOCK;
Glenn L McGrath07085852003-10-09 07:28:22 +00002051 if_printf_on_off(get_doorlock," setting drive doorlock to %ld", doorlock);
2052 bb_ioctl(fd, HDIO_DRIVE_CMD, &args,"HDIO_DRIVE_CMD(doorlock)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002053 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002054 if (set_dkeep)
2055 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002056 /* lock/unlock the drive's "feature" settings */
2057 unsigned char args[4] = {WIN_SETFEATURES,0,0,0};
2058 no_scsi();
2059 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002060
2061 if_printf_on_off(get_dkeep," setting drive keep features to %ld", dkeep);
Eric Andersen3443bd72003-07-22 07:30:36 +00002062 args[2] = dkeep ? 0x66 : 0xcc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002063 bb_ioctl(fd, HDIO_DRIVE_CMD, &args,"HDIO_DRIVE_CMD(keepsettings)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002064 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002065 if (set_defects)
2066 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002067 unsigned char args[4] = {WIN_SETFEATURES,0,0x04,0};
2068 no_scsi();
2069 args[2] = defects ? 0x04 : 0x84;
Glenn L McGrath07085852003-10-09 07:28:22 +00002070 if_printf(get_defects," setting drive defect-mgmt to %ld\n", defects);
2071 bb_ioctl(fd, HDIO_DRIVE_CMD, &args,"HDIO_DRIVE_CMD(defectmgmt)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002072 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002073 if (set_prefetch)
2074 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002075 unsigned char args[4] = {WIN_SETFEATURES,0,0xab,0};
2076 no_scsi();
2077 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002078
Eric Andersen3443bd72003-07-22 07:30:36 +00002079 args[1] = prefetch;
Glenn L McGrath07085852003-10-09 07:28:22 +00002080 if_printf(get_prefetch," setting drive prefetch to %ld\n", prefetch);
2081 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setprefetch)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002082 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002083 if (set_xfermode)
2084 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002085 unsigned char args[4] = {WIN_SETFEATURES,0,3,0};
2086 no_scsi();
2087 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002088
Eric Andersen3443bd72003-07-22 07:30:36 +00002089 args[1] = xfermode_requested;
Glenn L McGrath07085852003-10-09 07:28:22 +00002090 if (get_xfermode)
2091 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002092 printf(" setting xfermode to %d", xfermode_requested);
2093 interpret_xfermode(xfermode_requested);
2094 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002095 bb_ioctl(fd, HDIO_DRIVE_CMD, &args,"HDIO_DRIVE_CMD(setxfermode)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002096 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002097 if (set_lookahead)
2098 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002099 unsigned char args[4] = {WIN_SETFEATURES,0,0,0};
2100 no_scsi();
2101 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002102
Eric Andersen3443bd72003-07-22 07:30:36 +00002103 args[2] = lookahead ? 0xaa : 0x55;
Glenn L McGrath07085852003-10-09 07:28:22 +00002104 if_printf_on_off(get_lookahead," setting drive read-lookahead to %ld", lookahead);
2105 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setreadahead)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002106 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002107 if (set_apmmode)
2108 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002109 unsigned char args[4] = {WIN_SETFEATURES,0,0,0};
2110 no_scsi();
Eric Andersenb2aa7762004-04-05 13:08:08 +00002111 apmmode=check_if_min_and_set_val(apmmode,1);
2112 apmmode=check_if_maj_and_set_val(apmmode,255);
Glenn L McGrath07085852003-10-09 07:28:22 +00002113 if_printf(get_apmmode," setting APM level to");
2114 if (apmmode==255)
2115 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002116 /* disable Advanced Power Management */
Glenn L McGrath07085852003-10-09 07:28:22 +00002117 args[2] = 0x85; /* feature register */
2118 if_printf(get_apmmode," disabled\n");
2119 }
2120 else
2121 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002122 /* set Advanced Power Management mode */
Glenn L McGrath07085852003-10-09 07:28:22 +00002123 args[2] = 0x05; /* feature register */
Eric Andersen3443bd72003-07-22 07:30:36 +00002124 args[1] = apmmode; /* sector count register */
Glenn L McGrath07085852003-10-09 07:28:22 +00002125 if_printf(get_apmmode," 0x%02lX (%ld)\n",apmmode,apmmode);
2126 }
2127 bb_ioctl(fd, HDIO_DRIVE_CMD, &args,"HDIO_DRIVE_CMD");
Eric Andersen3443bd72003-07-22 07:30:36 +00002128 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002129 if (set_wcache)
2130 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002131#ifdef DO_FLUSHCACHE
2132#ifndef WIN_FLUSHCACHE
2133#define WIN_FLUSHCACHE 0xe7
2134#endif
2135 unsigned char flushcache[4] = {WIN_FLUSHCACHE,0,0,0};
2136#endif /* DO_FLUSHCACHE */
2137 unsigned char args[4] = {WIN_SETFEATURES,0,0,0};
2138 no_scsi();
2139 no_xt();
2140 args[2] = wcache ? 0x02 : 0x82;
Glenn L McGrath07085852003-10-09 07:28:22 +00002141 if_printf_on_off(get_wcache," setting drive write-caching to %ld", wcache);
Eric Andersen3443bd72003-07-22 07:30:36 +00002142#ifdef DO_FLUSHCACHE
2143 if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002144 bb_perror_msg ("HDIO_DRIVE_CMD(flushcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002145#endif /* DO_FLUSHCACHE */
Glenn L McGrath07085852003-10-09 07:28:22 +00002146 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002147#ifdef DO_FLUSHCACHE
2148 if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002149 bb_perror_msg ("HDIO_DRIVE_CMD(flushcache)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002150#endif /* DO_FLUSHCACHE */
2151 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002152 if (set_standbynow)
2153 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002154#ifndef WIN_STANDBYNOW1
2155#define WIN_STANDBYNOW1 0xE0
2156#endif
2157#ifndef WIN_STANDBYNOW2
2158#define WIN_STANDBYNOW2 0x94
2159#endif
2160 unsigned char args1[4] = {WIN_STANDBYNOW1,0,0,0};
2161 unsigned char args2[4] = {WIN_STANDBYNOW2,0,0,0};
2162 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002163 if_printf(get_standbynow," issuing standby command\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002164 if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
2165 && ioctl(fd, HDIO_DRIVE_CMD, &args2))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002166 bb_perror_msg("HDIO_DRIVE_CMD(standby)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002167 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002168 if (set_sleepnow)
2169 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002170#ifndef WIN_SLEEPNOW1
2171#define WIN_SLEEPNOW1 0xE6
2172#endif
2173#ifndef WIN_SLEEPNOW2
2174#define WIN_SLEEPNOW2 0x99
2175#endif
2176 unsigned char args1[4] = {WIN_SLEEPNOW1,0,0,0};
2177 unsigned char args2[4] = {WIN_SLEEPNOW2,0,0,0};
2178 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002179 if_printf(get_sleepnow," issuing sleep command\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002180 if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
2181 && ioctl(fd, HDIO_DRIVE_CMD, &args2))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002182 bb_perror_msg("HDIO_DRIVE_CMD(sleep)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002183 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002184 if (set_seagate)
2185 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002186 unsigned char args[4] = {0xfb,0,0,0};
2187 no_scsi();
2188 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002189 if_printf(get_seagate," disabling Seagate auto powersaving mode\n");
2190 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(seagatepwrsave)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002191 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002192 if (set_standby)
2193 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002194 unsigned char args[4] = {WIN_SETIDLE1,standby_requested,0,0};
2195 no_scsi();
2196 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002197 if (get_standby)
2198 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002199 printf(" setting standby to %lu", standby_requested);
2200 interpret_standby(standby_requested);
2201 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002202 bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setidle1)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002203 }
2204#else /* HDIO_DRIVE_CMD */
Glenn L McGrath07085852003-10-09 07:28:22 +00002205 if (force_operation)
2206 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002207 char buf[512];
2208 flush_buffer_cache(fd);
2209 if (-1 == read(fd, buf, sizeof(buf)))
Glenn L McGrath07085852003-10-09 07:28:22 +00002210 bb_error_msg("access failed");
Eric Andersen3443bd72003-07-22 07:30:36 +00002211 }
2212#endif /* HDIO_DRIVE_CMD */
2213
2214 if (!flagcount)
2215 verbose = 1;
2216
Glenn L McGrath07085852003-10-09 07:28:22 +00002217 if ((verbose && !is_scsi_hd && !is_xt_hd) || get_mult || get_identity)
2218 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002219 no_scsi();
2220 multcount = -1;
Glenn L McGrath07085852003-10-09 07:28:22 +00002221 if (ioctl(fd, HDIO_GET_MULTCOUNT, &multcount))
2222 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002223 if ((verbose && !is_xt_hd) || get_mult)
Eric Andersen06d4ec22004-03-19 10:53:52 +00002224 bb_perror_msg("HDIO_GET_MULTCOUNT");
Glenn L McGrath07085852003-10-09 07:28:22 +00002225 }
2226 else if (verbose | get_mult)
2227 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002228 printf(" multcount = %2ld", multcount);
2229 on_off(multcount);
2230 }
2231 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002232 if ((verbose && !is_scsi_hd && !is_xt_hd) || get_io32bit)
2233 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002234 no_scsi();
2235 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002236 if(ioctl(fd, HDIO_GET_32BIT, &parm))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002237 bb_perror_msg("HDIO_GET_32BIT");
Glenn L McGrath07085852003-10-09 07:28:22 +00002238 else
2239 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002240 printf(" IO_support =%3ld (", parm);
Glenn L McGrath07085852003-10-09 07:28:22 +00002241 switch (parm)
2242 {
2243 case 0:
2244 printf("default ");
2245 case 2:
2246 printf("16-bit)\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002247 break;
Glenn L McGrath07085852003-10-09 07:28:22 +00002248 case 1:
2249 printf("32-bit)\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002250 break;
Glenn L McGrath07085852003-10-09 07:28:22 +00002251 case 3:
2252 printf("32-bit w/sync)\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002253 break;
Glenn L McGrath07085852003-10-09 07:28:22 +00002254 case 8:
2255 printf("Request-Queue-Bypass)\n");
Eric Andersen3443bd72003-07-22 07:30:36 +00002256 break;
Glenn L McGrath07085852003-10-09 07:28:22 +00002257 default:
2258 printf("\?\?\?)\n");
2259 /*esac*/
Eric Andersen3443bd72003-07-22 07:30:36 +00002260 }
2261 }
2262 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002263 if ((verbose && !is_scsi_hd && !is_xt_hd) || get_unmask)
2264 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002265 no_scsi();
2266 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002267 bb_ioctl_on_off(fd, HDIO_GET_UNMASKINTR,(unsigned long *)parm,
2268 "HDIO_GET_UNMASKINTR"," unmaskirq = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002269 }
2270
Glenn L McGrath07085852003-10-09 07:28:22 +00002271
Eric Andersen0a57a792003-08-06 08:57:35 +00002272#ifdef CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
Eric Andersen3443bd72003-07-22 07:30:36 +00002273 if ((verbose && !is_scsi_hd) || get_dma) {
2274 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002275 if(ioctl(fd, HDIO_GET_DMA, &parm))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002276 bb_perror_msg("HDIO_GET_DMA");
Glenn L McGrath07085852003-10-09 07:28:22 +00002277 else
2278 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002279 printf(" using_dma = %2ld", parm);
2280 if (parm == 8)
2281 printf(" (DMA-Assisted-PIO)\n");
2282 else
2283 on_off(parm);
2284 }
2285 }
2286#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00002287 if (get_dma_q)
2288 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002289 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002290 bb_ioctl_on_off (fd, HDIO_GET_QDMA,(unsigned long *)parm,
2291 "HDIO_GET_QDMA"," queue_depth = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002292 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002293 if ((verbose && !is_scsi_hd && !is_xt_hd) || get_keep)
2294 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002295 no_scsi();
2296 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002297 bb_ioctl_on_off (fd, HDIO_GET_KEEPSETTINGS,(unsigned long *)parm,
2298 "HDIO_GET_KEEPSETTINGS"," keepsettings = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002299 }
2300
Glenn L McGrath07085852003-10-09 07:28:22 +00002301 if (get_nowerr)
2302 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002303 no_scsi();
2304 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002305 bb_ioctl_on_off (fd, HDIO_GET_NOWERR,(unsigned long *)&parm,
2306 " HDIO_GET_NOWERR"," nowerr = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002307 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002308 if (verbose || get_readonly)
2309 {
2310 bb_ioctl_on_off(fd, BLKROGET,(unsigned long *)parm,
2311 " BLKROGET"," readonly = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002312 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002313 if ((verbose && !is_scsi_hd) || get_readahead)
2314 {
2315 bb_ioctl_on_off (fd, BLKRAGET, (unsigned long *) parm,
2316 " BLKRAGET"," readahead = %2ld");
Eric Andersen3443bd72003-07-22 07:30:36 +00002317 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002318 if (verbose || get_geom)
2319 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002320 static const char msg[] = " geometry = %u/%u/%u, sectors = %ld, start = %ld\n";
2321 static struct hd_geometry g;
2322#ifdef HDIO_GETGEO_BIG
2323 static struct hd_big_geometry bg;
2324#endif
2325
2326 if (ioctl(fd, BLKGETSIZE, &parm))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002327 bb_perror_msg("BLKGETSIZE");
Eric Andersen3443bd72003-07-22 07:30:36 +00002328#ifdef HDIO_GETGEO_BIG
2329 else if (!ioctl(fd, HDIO_GETGEO_BIG, &bg))
2330 printf(msg, bg.cylinders, bg.heads, bg.sectors, parm, bg.start);
2331#endif
2332 else if (ioctl(fd, HDIO_GETGEO, &g))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002333 bb_perror_msg("HDIO_GETGEO");
Glenn L McGrath07085852003-10-09 07:28:22 +00002334 else
2335 printf(msg, g.cylinders, g.heads, g.sectors, parm, g.start);
Eric Andersen3443bd72003-07-22 07:30:36 +00002336 }
2337#ifdef HDIO_DRIVE_CMD
Glenn L McGrath07085852003-10-09 07:28:22 +00002338 if (get_powermode)
2339 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002340#ifndef WIN_CHECKPOWERMODE1
2341#define WIN_CHECKPOWERMODE1 0xE5
2342#endif
2343#ifndef WIN_CHECKPOWERMODE2
2344#define WIN_CHECKPOWERMODE2 0x98
2345#endif
2346 unsigned char args[4] = {WIN_CHECKPOWERMODE1,0,0,0};
2347 const char *state;
2348 no_scsi();
2349 if (ioctl(fd, HDIO_DRIVE_CMD, &args)
Glenn L McGrath07085852003-10-09 07:28:22 +00002350 && (args[0] = WIN_CHECKPOWERMODE2) /* try again with 0x98 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002351 && ioctl(fd, HDIO_DRIVE_CMD, &args))
Glenn L McGrath07085852003-10-09 07:28:22 +00002352 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002353 if (errno != EIO || args[0] != 0 || args[1] != 0)
2354 state = "unknown";
2355 else
2356 state = "sleeping";
Eric Andersen3443bd72003-07-22 07:30:36 +00002357 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002358 else
2359 state = (args[2] == 255) ? "active/idle" : "standby";
2360
Eric Andersen3443bd72003-07-22 07:30:36 +00002361 printf(" drive state is: %s\n", state);
2362 }
2363#endif
2364#ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
Glenn L McGrath07085852003-10-09 07:28:22 +00002365 if (perform_reset)
2366 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002367 no_scsi();
2368 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002369 bb_ioctl(fd, HDIO_DRIVE_RESET, NULL, "HDIO_DRIVE_RESET");
Eric Andersen3443bd72003-07-22 07:30:36 +00002370 }
2371#endif /* CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET */
2372#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
Glenn L McGrath07085852003-10-09 07:28:22 +00002373 if (perform_tristate)
2374 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002375 unsigned char args[4] = {0,tristate,0,0};
2376 no_scsi();
2377 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002378 bb_ioctl(fd, HDIO_TRISTATE_HWIF, &args, "HDIO_TRISTATE_HWIF");
Eric Andersen3443bd72003-07-22 07:30:36 +00002379 }
2380#endif /* CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF */
2381#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +00002382 if (get_identity)
2383 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002384 static struct hd_driveid id;
2385
2386 no_scsi();
2387 no_xt();
2388
Glenn L McGrath07085852003-10-09 07:28:22 +00002389 if (!ioctl(fd, HDIO_GET_IDENTITY, &id))
2390 {
2391 if (multcount != -1)
2392 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002393 id.multsect = multcount;
2394 id.multsect_valid |= 1;
Glenn L McGrath07085852003-10-09 07:28:22 +00002395 }
2396 else
Eric Andersen3443bd72003-07-22 07:30:36 +00002397 id.multsect_valid &= ~1;
2398 dump_identity(&id);
Glenn L McGrath07085852003-10-09 07:28:22 +00002399 }
2400 else if (errno == -ENOMSG)
Eric Andersen3443bd72003-07-22 07:30:36 +00002401 printf(" no identification info available\n");
2402 else
Eric Andersen06d4ec22004-03-19 10:53:52 +00002403 bb_perror_msg("HDIO_GET_IDENTITY");
Eric Andersen3443bd72003-07-22 07:30:36 +00002404 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002405
2406 if (get_IDentity)
2407 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002408 unsigned char args[4+512] = {WIN_IDENTIFY,0,0,1,};
2409 unsigned i;
Glenn L McGrath07085852003-10-09 07:28:22 +00002410
Eric Andersen3443bd72003-07-22 07:30:36 +00002411 no_scsi();
2412 no_xt();
Glenn L McGrath07085852003-10-09 07:28:22 +00002413
2414 if (ioctl(fd, HDIO_DRIVE_CMD, &args))
2415 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002416 args[0] = WIN_PIDENTIFY;
Glenn L McGrath07085852003-10-09 07:28:22 +00002417 if (ioctl(fd, HDIO_DRIVE_CMD, &args))
2418 {
Eric Andersen06d4ec22004-03-19 10:53:52 +00002419 bb_perror_msg("HDIO_DRIVE_CMD(identify)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002420 goto identify_abort;
2421 }
2422 }
Glenn L McGrath07085852003-10-09 07:28:22 +00002423 for(i=0; i<(sizeof args)/2; i+=2)
Eric Andersen3443bd72003-07-22 07:30:36 +00002424 __le16_to_cpus((uint16_t *)(&args[i]));
Glenn L McGrath07085852003-10-09 07:28:22 +00002425
Eric Andersen3443bd72003-07-22 07:30:36 +00002426 identify((void *)&args[4], NULL);
Glenn L McGrath07085852003-10-09 07:28:22 +00002427identify_abort:
2428 /* VOID */;
Eric Andersen3443bd72003-07-22 07:30:36 +00002429 }
2430#endif
2431#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
Glenn L McGrath07085852003-10-09 07:28:22 +00002432 if (set_busstate)
2433 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002434 no_scsi();
Glenn L McGrath07085852003-10-09 07:28:22 +00002435 if (get_busstate)
2436 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002437 printf(" setting bus state to %d", busstate);
2438 bus_state_value(busstate);
2439 }
Eric Andersena68ea1c2006-01-30 22:48:39 +00002440 bb_ioctl(fd, HDIO_SET_BUSSTATE, (int *)(unsigned long)busstate, "HDIO_SET_BUSSTATE");
Eric Andersen3443bd72003-07-22 07:30:36 +00002441 }
2442#endif
2443#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
Glenn L McGrath07085852003-10-09 07:28:22 +00002444 if (get_busstate)
2445 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002446 no_scsi();
2447 if (ioctl(fd, HDIO_GET_BUSSTATE, &parm))
Eric Andersen06d4ec22004-03-19 10:53:52 +00002448 bb_perror_msg("HDIO_GET_BUSSTATE");
Glenn L McGrath07085852003-10-09 07:28:22 +00002449 else
2450 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002451 printf(" busstate = %2ld", parm);
2452 bus_state_value(parm);
2453 }
2454 }
2455#endif
Glenn L McGrath07085852003-10-09 07:28:22 +00002456 if (reread_partn)
2457 bb_ioctl(fd, BLKRRPART, NULL, "BLKRRPART");
2458
Eric Andersen3443bd72003-07-22 07:30:36 +00002459
2460 if (do_ctimings)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002461 do_time(0,fd); /*time cache */
Eric Andersen3443bd72003-07-22 07:30:36 +00002462 if (do_timings)
Glenn L McGrath07085852003-10-09 07:28:22 +00002463 do_time(1,fd); /*time device */
Eric Andersen3443bd72003-07-22 07:30:36 +00002464 if (do_flush)
2465 flush_buffer_cache (fd);
2466 close (fd);
2467}
2468
Eric Andersen06d4ec22004-03-19 10:53:52 +00002469static char * GET_NUMBER(char *p, unsigned long *flag, unsigned long *num)
2470{
2471 *num = 0;
2472 while (isdigit(*p)) {
2473 *flag = 1;
2474 *num = (*num * 10) + (*p++ - '0');
2475 }
2476 return p;
2477}
2478
2479static char * GET_STRING(char *p, unsigned long *flag, int *num)
2480{
2481 char *tmpstr;
2482 char name[32];
2483 tmpstr = name;
2484 tmpstr[0] = '\0';
2485 while (isalnum(*p) && (tmpstr - name) < 31) {
2486 tmpstr[0] = *p++;
2487 tmpstr[1] = '\0';
2488 ++tmpstr;
2489 }
2490 *num = translate_xfermode(name);
2491 if (*num == -1)
2492 *flag = 0;
2493 else
2494 *flag = 1;
2495 return p;
2496}
2497
Eric Andersen3443bd72003-07-22 07:30:36 +00002498#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
2499static int fromhex (unsigned char c)
2500{
2501 if (c >= 'a' && c <= 'f')
2502 return 10 + (c - 'a');
2503 if (c >= '0' && c <= '9')
2504 return (c - '0');
2505 bb_error_msg_and_die("bad char: '%c' 0x%02x", c, c);
2506}
2507
2508static int identify_from_stdin (void)
2509{
2510 unsigned short sbuf[800];
2511 unsigned char buf[1600], *b = (unsigned char *)buf;
2512 int i, count = read(0, buf, 1280);
2513
2514 if (count != 1280)
2515 bb_error_msg_and_die("read(1280 bytes) failed (rc=%d)", count);
Glenn L McGrath07085852003-10-09 07:28:22 +00002516 for (i = 0; count >= 4; ++i)
2517 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002518 sbuf[i] = (fromhex(b[0]) << 12) | (fromhex(b[1]) << 8) | (fromhex(b[2]) << 4) | fromhex(b[3]);
2519 __le16_to_cpus((uint16_t *)(&sbuf[i]));
2520 b += 5;
2521 count -= 5;
2522 }
2523 identify(sbuf, NULL);
2524 return 0;
2525}
2526#endif
2527
Eric Andersenb2aa7762004-04-05 13:08:08 +00002528static void missing_arg(int arg, char c, char* add)
2529{
2530 if (!arg)
2531 bb_error_msg("-%c: missing value %s", c, (add!=NULL)? add :"");
2532}
2533
Eric Andersen3443bd72003-07-22 07:30:36 +00002534/* our main() routine: */
2535int hdparm_main(int argc, char **argv)
2536{
2537 char c, *p;
Eric Andersen3443bd72003-07-22 07:30:36 +00002538
2539 ++argv;
2540 if (!--argc)
2541 bb_show_usage();
Glenn L McGrath07085852003-10-09 07:28:22 +00002542
2543 while (argc--)
2544 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002545#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
Glenn L McGrath07085852003-10-09 07:28:22 +00002546 if (!strcmp("-Istdin", *argv))
2547 {
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00002548 return identify_from_stdin();
Eric Andersen3443bd72003-07-22 07:30:36 +00002549 }
2550#endif
2551 p = *argv++;
Glenn L McGrath07085852003-10-09 07:28:22 +00002552 if (*p == '-')
2553 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002554 if (!*++p)
2555 bb_show_usage();
Glenn L McGrath07085852003-10-09 07:28:22 +00002556 while ((c = *p++))
2557 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002558 ++flagcount;
Glenn L McGrath07085852003-10-09 07:28:22 +00002559 switch (c)
2560 {
Eric Andersen3443bd72003-07-22 07:30:36 +00002561 case 'V':
Glenn L McGrath07085852003-10-09 07:28:22 +00002562 /*bb_error_msg_and_die("%s", VERSION);*/
2563 /* We have to return 0 here and not 1 */
2564 printf("%s %s\n",bb_applet_name, VERSION);
"Vladimir N. Oleynik"b4b6d262005-10-15 14:10:36 +00002565 return EXIT_SUCCESS;
Eric Andersen3443bd72003-07-22 07:30:36 +00002566 case 'v':
2567 verbose = 1;
2568 break;
2569#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
2570 case 'I':
2571 get_IDentity = 1;
2572 break;
2573 case 'i':
2574 get_identity = 1;
2575 break;
2576#endif
2577 case 'g':
2578 get_geom = 1;
2579 break;
2580 case 'f':
2581 do_flush = 1;
2582 break;
2583 case 'q':
2584 quiet = 1;
2585 noisy = 0;
2586 break;
2587 case 'u':
2588 get_unmask = noisy;
2589 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002590 if (!*p && argc && isdigit(**argv))
2591 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002592 if((set_unmask = set_flag(p,'1'))==1)
2593 unmask = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002594 break;
Eric Andersen0a57a792003-08-06 08:57:35 +00002595#ifdef CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
Eric Andersen3443bd72003-07-22 07:30:36 +00002596 case 'd':
2597 get_dma = noisy;
2598 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002599 if (!*p && argc && isdigit(**argv))
2600 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002601 if((set_dma = set_flag(p,'9'))==1)
Eric Andersen3443bd72003-07-22 07:30:36 +00002602 dma = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002603 break;
Eric Andersen0a57a792003-08-06 08:57:35 +00002604#endif /* CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA */
Eric Andersen3443bd72003-07-22 07:30:36 +00002605 case 'n':
2606 get_nowerr = noisy;
2607 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002608 if (!*p && argc && isdigit(**argv))
2609 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002610 if((set_nowerr = set_flag(p,'1'))==1)
2611 nowerr = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002612 break;
2613 case 'p':
2614 noisy_piomode = noisy;
2615 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002616 if (!*p && argc && isalnum(**argv))
2617 p = *argv++, --argc;
2618 p=GET_STRING(p,&set_piomode,&piomode);
Eric Andersen3443bd72003-07-22 07:30:36 +00002619 break;
2620 case 'r':
2621 get_readonly = noisy;
2622 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002623 if (!*p && argc && isdigit(**argv))
2624 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002625 if((set_readonly = set_flag(p,'1'))==1)
2626 readonly = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002627 break;
2628 case 'm':
2629 get_mult = noisy;
2630 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002631 if (!*p && argc && isalnum(**argv))
2632 p = *argv++, --argc;
2633 p=GET_NUMBER(p,&set_mult,&mult);
Eric Andersen3443bd72003-07-22 07:30:36 +00002634 break;
2635 case 'c':
2636 get_io32bit = noisy;
2637 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002638 if (!*p && argc && isalnum(**argv))
2639 p = *argv++, --argc;
2640 p=GET_NUMBER(p,&set_io32bit,&io32bit);
Eric Andersen3443bd72003-07-22 07:30:36 +00002641 break;
2642#ifdef HDIO_DRIVE_CMD
2643 case 'S':
2644 get_standby = noisy;
2645 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002646 if (!*p && argc && isalnum(**argv))
2647 p = *argv++, --argc;
2648 p=GET_NUMBER(p,&set_standby,&standby_requested);
Eric Andersenb2aa7762004-04-05 13:08:08 +00002649 missing_arg(set_standby, c, NULL);
Eric Andersen3443bd72003-07-22 07:30:36 +00002650 break;
2651
2652 case 'D':
2653 get_defects = noisy;
2654 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002655 if (!*p && argc && isalnum(**argv))
2656 p = *argv++, --argc;
2657 p=GET_NUMBER(p,&set_defects,&defects);
Eric Andersenb2aa7762004-04-05 13:08:08 +00002658 missing_arg(set_defects, c, NULL);
Eric Andersen3443bd72003-07-22 07:30:36 +00002659 break;
2660 case 'P':
2661 get_prefetch = noisy;
2662 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002663 if (!*p && argc && isalnum(**argv))
2664 p = *argv++, --argc;
2665 p=GET_NUMBER(p,&set_prefetch,&prefetch);
Eric Andersenb2aa7762004-04-05 13:08:08 +00002666 missing_arg(set_prefetch, c, NULL);
Eric Andersen3443bd72003-07-22 07:30:36 +00002667 break;
2668
2669 case 'X':
2670 get_xfermode = noisy;
2671 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002672 if (!*p && argc && isalnum(**argv))
2673 p = *argv++, --argc;
2674 p=GET_STRING(p,&set_xfermode,&xfermode_requested);
Eric Andersenb2aa7762004-04-05 13:08:08 +00002675 missing_arg(set_xfermode, c, NULL);
Eric Andersen3443bd72003-07-22 07:30:36 +00002676 break;
2677
2678 case 'K':
2679 get_dkeep = noisy;
2680 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002681 if (!*p && argc && isdigit(**argv))
2682 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002683 if((set_dkeep = set_flag(p,'1'))==1)
2684 dkeep = *p++ - '0';
2685 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002686 goto missing_arg_error;
Eric Andersen3443bd72003-07-22 07:30:36 +00002687 break;
2688
2689 case 'A':
2690 get_lookahead = noisy;
2691 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002692 if (!*p && argc && isdigit(**argv))
2693 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002694 if((set_lookahead = set_flag(p,'1'))==1)
2695 lookahead = *p++ - '0';
2696 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002697 goto missing_arg_error;
Eric Andersen3443bd72003-07-22 07:30:36 +00002698 break;
2699
2700 case 'L':
2701 get_doorlock = noisy;
2702 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002703 if (!*p && argc && isdigit(**argv))
2704 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002705 if((set_doorlock = set_flag(p,'1'))==1)
2706 doorlock = *p++ - '0';
2707 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002708 goto missing_arg_error;
Eric Andersen3443bd72003-07-22 07:30:36 +00002709 break;
2710
2711 case 'W':
2712 get_wcache = noisy;
2713 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002714 if (!*p && argc && isdigit(**argv))
2715 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002716 if((set_wcache = set_flag(p,'1'))==1)
2717 wcache = *p++ - '0';
2718 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002719missing_arg_error:
2720 missing_arg(1, c, "(0/1)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002721 break;
2722
2723 case 'C':
2724 get_powermode = noisy;
2725 noisy = 1;
2726 break;
2727
2728 case 'y':
2729 get_standbynow = noisy;
2730 noisy = 1;
2731 set_standbynow = 1;
2732 break;
2733
2734 case 'Y':
2735 get_sleepnow = noisy;
2736 noisy = 1;
2737 set_sleepnow = 1;
2738 break;
2739
2740 case 'z':
2741 reread_partn = 1;
2742 break;
2743
2744 case 'Z':
2745 get_seagate = noisy;
2746 noisy = 1;
2747 set_seagate = 1;
2748 break;
2749#endif /* HDIO_DRIVE_CMD */
2750 case 'k':
2751 get_keep = noisy;
2752 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002753 if (!*p && argc && isdigit(**argv))
2754 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002755 if((set_keep = set_flag(p,'1'))==1)
2756 keep = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002757 break;
2758#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
2759 case 'U':
Eric Andersen06d4ec22004-03-19 10:53:52 +00002760 if (!*p && argc && isdigit(**argv))
2761 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002762 if(! p)
Eric Andersenb2aa7762004-04-05 13:08:08 +00002763 goto expected_hwif_error; /* "expected hwif_nr" */
Eric Andersen3443bd72003-07-22 07:30:36 +00002764
2765 sscanf(p++, "%i", &hwif);
2766
2767 unregister_hwif = 1;
2768 break;
2769#endif /* CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF */
2770#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
2771 case 'R':
Eric Andersen06d4ec22004-03-19 10:53:52 +00002772 if (!*p && argc && isdigit(**argv))
2773 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002774 if(! p)
Eric Andersenb2aa7762004-04-05 13:08:08 +00002775 goto expected_hwif_error; /* "expected hwif_data" */
Eric Andersen3443bd72003-07-22 07:30:36 +00002776
2777 sscanf(p++, "%i", &hwif_data);
2778
2779 if (argc && isdigit(**argv))
2780 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002781 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002782 goto expected_hwif_error; /* "expected hwif_ctrl" */
Eric Andersen3443bd72003-07-22 07:30:36 +00002783
2784 sscanf(p, "%i", &hwif_ctrl);
2785
2786 if (argc && isdigit(**argv))
2787 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002788 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002789expected_hwif_error:
Glenn L McGrath07085852003-10-09 07:28:22 +00002790 bb_error_msg_and_die("expected hwif value"); /* "expected hwif_irq" */
Eric Andersen3443bd72003-07-22 07:30:36 +00002791
2792 sscanf(p, "%i", &hwif_irq);
2793
2794 *p = '\0';
2795
2796 scan_hwif = 1;
2797 break;
2798#endif /* CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF */
2799 case 'Q':
Eric Andersen06d4ec22004-03-19 10:53:52 +00002800#ifdef HDIO_GET_QDMA
Eric Andersen3443bd72003-07-22 07:30:36 +00002801 get_dma_q = noisy;
2802 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002803#ifdef HDIO_SET_QDMA
2804 if (!*p && argc && isalnum(**argv))
2805 p = *argv++, --argc;
2806 p=GET_NUMBER(p,&set_dma_q,&dma_q);
2807#ifdef HDIO_GET_QDMA
2808 dma_q = -dma_q;
2809#endif
2810#endif
2811#endif
Eric Andersen3443bd72003-07-22 07:30:36 +00002812 break;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002813
Eric Andersen3443bd72003-07-22 07:30:36 +00002814#ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
2815 case 'w':
2816 perform_reset = 1;
2817 break;
2818#endif /* CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET */
2819#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
2820 case 'x':
Eric Andersen06d4ec22004-03-19 10:53:52 +00002821 if (!*p && argc && isdigit(**argv))
2822 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002823 if((perform_tristate = set_flag(p,'1'))==1)
2824 tristate = *p++ - '0';
2825 else
Eric Andersenb2aa7762004-04-05 13:08:08 +00002826 missing_arg(1, c, "(0/1)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002827 break;
2828
2829#endif /* CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF */
2830 case 'a':
2831 get_readahead = noisy;
2832 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002833 if (!*p && argc && isalnum(**argv))
2834 p = *argv++, --argc;
Eric Andersenf828da02004-07-20 22:53:59 +00002835 p=GET_NUMBER(p,&set_readahead,&Xreadahead);
Eric Andersen3443bd72003-07-22 07:30:36 +00002836 break;
2837 case 'B':
2838 get_apmmode = noisy;
2839 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002840 if (!*p && argc && isalnum(**argv))
2841 p = *argv++, --argc;
2842 p=GET_NUMBER(p,&set_apmmode,&apmmode);
Eric Andersenb2aa7762004-04-05 13:08:08 +00002843 missing_arg(set_apmmode, c, "(1-255)");
Eric Andersen3443bd72003-07-22 07:30:36 +00002844 break;
2845 case 't':
2846 do_timings = 1;
2847 do_flush = 1;
2848 break;
2849 case 'T':
2850 do_ctimings = 1;
2851 do_flush = 1;
2852 break;
2853#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
2854 case 'b':
2855 get_busstate = noisy;
2856 noisy = 1;
Eric Andersen06d4ec22004-03-19 10:53:52 +00002857 if (!*p && argc && isdigit(**argv))
2858 p = *argv++, --argc;
Glenn L McGrath07085852003-10-09 07:28:22 +00002859 if((set_busstate = set_flag(p,'2'))==1)
2860 busstate = *p++ - '0';
Eric Andersen3443bd72003-07-22 07:30:36 +00002861 break;
2862#endif
2863 case 'h':
2864 default:
2865 bb_show_usage();
2866 }
2867 }
2868 if (!argc)
2869 bb_show_usage();
Eric Andersen06d4ec22004-03-19 10:53:52 +00002870 } else {
Glenn L McGrath07085852003-10-09 07:28:22 +00002871 process_dev (p);
Eric Andersen06d4ec22004-03-19 10:53:52 +00002872 }
Eric Andersen3443bd72003-07-22 07:30:36 +00002873 }
2874 return 0 ;
2875}