Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * hdparm implementation for busybox |
| 4 | * |
Glenn L McGrath | 5be6a20 | 2003-11-28 22:55:03 +0000 | [diff] [blame] | 5 | * Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it> |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 6 | * Hacked by Tito <farmatito@tiscali.it> for size optimization. |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 7 | * |
Mike Frysinger | f284c76 | 2006-04-16 20:38:26 +0000 | [diff] [blame] | 8 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 9 | * |
| 10 | * This program is based on the source code of hdparm: see below... |
| 11 | * hdparm.c - Command line interface to get/set hard disk parameters |
| 12 | * - by Mark Lord (C) 1994-2002 -- freely distributable |
| 13 | */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 15 | #include "libbb.h" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 16 | #include <linux/hdreg.h> |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 17 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 18 | /* device types */ |
| 19 | /* ------------ */ |
| 20 | #define NO_DEV 0xffff |
| 21 | #define ATA_DEV 0x0000 |
| 22 | #define ATAPI_DEV 0x0001 |
| 23 | |
| 24 | /* word definitions */ |
| 25 | /* ---------------- */ |
| 26 | #define GEN_CONFIG 0 /* general configuration */ |
| 27 | #define LCYLS 1 /* number of logical cylinders */ |
| 28 | #define CONFIG 2 /* specific configuration */ |
| 29 | #define LHEADS 3 /* number of logical heads */ |
| 30 | #define TRACK_BYTES 4 /* number of bytes/track (ATA-1) */ |
| 31 | #define SECT_BYTES 5 /* number of bytes/sector (ATA-1) */ |
| 32 | #define LSECTS 6 /* number of logical sectors/track */ |
| 33 | #define START_SERIAL 10 /* ASCII serial number */ |
| 34 | #define LENGTH_SERIAL 10 /* 10 words (20 bytes or characters) */ |
| 35 | #define BUF_TYPE 20 /* buffer type (ATA-1) */ |
| 36 | #define BUFFER__SIZE 21 /* buffer size (ATA-1) */ |
| 37 | #define RW_LONG 22 /* extra bytes in R/W LONG cmd ( < ATA-4)*/ |
| 38 | #define START_FW_REV 23 /* ASCII firmware revision */ |
| 39 | #define LENGTH_FW_REV 4 /* 4 words (8 bytes or characters) */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 40 | #define START_MODEL 27 /* ASCII model number */ |
| 41 | #define LENGTH_MODEL 20 /* 20 words (40 bytes or characters) */ |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 42 | #define SECTOR_XFER_MAX 47 /* r/w multiple: max sectors xfered */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 43 | #define DWORD_IO 48 /* can do double-word IO (ATA-1 only) */ |
| 44 | #define CAPAB_0 49 /* capabilities */ |
| 45 | #define CAPAB_1 50 |
| 46 | #define PIO_MODE 51 /* max PIO mode supported (obsolete)*/ |
| 47 | #define DMA_MODE 52 /* max Singleword DMA mode supported (obs)*/ |
| 48 | #define WHATS_VALID 53 /* what fields are valid */ |
| 49 | #define LCYLS_CUR 54 /* current logical cylinders */ |
| 50 | #define LHEADS_CUR 55 /* current logical heads */ |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 51 | #define LSECTS_CUR 56 /* current logical sectors/track */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 52 | #define CAPACITY_LSB 57 /* current capacity in sectors */ |
| 53 | #define CAPACITY_MSB 58 |
| 54 | #define SECTOR_XFER_CUR 59 /* r/w multiple: current sectors xfered */ |
| 55 | #define LBA_SECTS_LSB 60 /* LBA: total number of user */ |
| 56 | #define LBA_SECTS_MSB 61 /* addressable sectors */ |
| 57 | #define SINGLE_DMA 62 /* singleword DMA modes */ |
| 58 | #define MULTI_DMA 63 /* multiword DMA modes */ |
| 59 | #define ADV_PIO_MODES 64 /* advanced PIO modes supported */ |
| 60 | /* multiword DMA xfer cycle time: */ |
| 61 | #define DMA_TIME_MIN 65 /* - minimum */ |
| 62 | #define DMA_TIME_NORM 66 /* - manufacturer's recommended */ |
| 63 | /* minimum PIO xfer cycle time: */ |
| 64 | #define PIO_NO_FLOW 67 /* - without flow control */ |
| 65 | #define PIO_FLOW 68 /* - with IORDY flow control */ |
| 66 | #define PKT_REL 71 /* typical #ns from PKT cmd to bus rel */ |
| 67 | #define SVC_NBSY 72 /* typical #ns from SERVICE cmd to !BSY */ |
| 68 | #define CDR_MAJOR 73 /* CD ROM: major version number */ |
| 69 | #define CDR_MINOR 74 /* CD ROM: minor version number */ |
| 70 | #define QUEUE_DEPTH 75 /* queue depth */ |
| 71 | #define MAJOR 80 /* major version number */ |
| 72 | #define MINOR 81 /* minor version number */ |
| 73 | #define CMDS_SUPP_0 82 /* command/feature set(s) supported */ |
| 74 | #define CMDS_SUPP_1 83 |
| 75 | #define CMDS_SUPP_2 84 |
| 76 | #define CMDS_EN_0 85 /* command/feature set(s) enabled */ |
| 77 | #define CMDS_EN_1 86 |
| 78 | #define CMDS_EN_2 87 |
| 79 | #define ULTRA_DMA 88 /* ultra DMA modes */ |
| 80 | /* time to complete security erase */ |
| 81 | #define ERASE_TIME 89 /* - ordinary */ |
| 82 | #define ENH_ERASE_TIME 90 /* - enhanced */ |
| 83 | #define ADV_PWR 91 /* current advanced power management level |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 84 | in low byte, 0x40 in high byte. */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 85 | #define PSWD_CODE 92 /* master password revision code */ |
| 86 | #define HWRST_RSLT 93 /* hardware reset result */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 87 | #define ACOUSTIC 94 /* acoustic mgmt values ( >= ATA-6) */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 88 | #define LBA_LSB 100 /* LBA: maximum. Currently only 48 */ |
| 89 | #define LBA_MID 101 /* bits are used, but addr 103 */ |
| 90 | #define LBA_48_MSB 102 /* has been reserved for LBA in */ |
| 91 | #define LBA_64_MSB 103 /* the future. */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 92 | #define RM_STAT 127 /* removable media status notification feature set support */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 93 | #define SECU_STATUS 128 /* security status */ |
| 94 | #define CFA_PWR_MODE 160 /* CFA power mode 1 */ |
| 95 | #define START_MEDIA 176 /* media serial number */ |
| 96 | #define LENGTH_MEDIA 20 /* 20 words (40 bytes or characters)*/ |
| 97 | #define START_MANUF 196 /* media manufacturer I.D. */ |
| 98 | #define LENGTH_MANUF 10 /* 10 words (20 bytes or characters) */ |
| 99 | #define INTEGRITY 255 /* integrity word */ |
| 100 | |
| 101 | /* bit definitions within the words */ |
| 102 | /* -------------------------------- */ |
| 103 | |
| 104 | /* many words are considered valid if bit 15 is 0 and bit 14 is 1 */ |
| 105 | #define VALID 0xc000 |
| 106 | #define VALID_VAL 0x4000 |
| 107 | /* many words are considered invalid if they are either all-0 or all-1 */ |
| 108 | #define NOVAL_0 0x0000 |
| 109 | #define NOVAL_1 0xffff |
| 110 | |
| 111 | /* word 0: gen_config */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 112 | #define NOT_ATA 0x8000 |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 113 | #define NOT_ATAPI 0x4000 /* (check only if bit 15 == 1) */ |
| 114 | #define MEDIA_REMOVABLE 0x0080 |
| 115 | #define DRIVE_NOT_REMOVABLE 0x0040 /* bit obsoleted in ATA 6 */ |
| 116 | #define INCOMPLETE 0x0004 |
| 117 | #define CFA_SUPPORT_VAL 0x848a /* 848a=CFA feature set support */ |
| 118 | #define DRQ_RESPONSE_TIME 0x0060 |
| 119 | #define DRQ_3MS_VAL 0x0000 |
| 120 | #define DRQ_INTR_VAL 0x0020 |
| 121 | #define DRQ_50US_VAL 0x0040 |
| 122 | #define PKT_SIZE_SUPPORTED 0x0003 |
| 123 | #define PKT_SIZE_12_VAL 0x0000 |
| 124 | #define PKT_SIZE_16_VAL 0x0001 |
| 125 | #define EQPT_TYPE 0x1f00 |
| 126 | #define SHIFT_EQPT 8 |
| 127 | |
| 128 | #define CDROM 0x0005 |
| 129 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 130 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 131 | static const char *const pkt_str[] = { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 132 | "Direct-access device", /* word 0, bits 12-8 = 00 */ |
| 133 | "Sequential-access device", /* word 0, bits 12-8 = 01 */ |
| 134 | "Printer", /* word 0, bits 12-8 = 02 */ |
| 135 | "Processor", /* word 0, bits 12-8 = 03 */ |
| 136 | "Write-once device", /* word 0, bits 12-8 = 04 */ |
| 137 | "CD-ROM", /* word 0, bits 12-8 = 05 */ |
| 138 | "Scanner", /* word 0, bits 12-8 = 06 */ |
| 139 | "Optical memory", /* word 0, bits 12-8 = 07 */ |
| 140 | "Medium changer", /* word 0, bits 12-8 = 08 */ |
| 141 | "Communications device", /* word 0, bits 12-8 = 09 */ |
| 142 | "ACS-IT8 device", /* word 0, bits 12-8 = 0a */ |
| 143 | "ACS-IT8 device", /* word 0, bits 12-8 = 0b */ |
| 144 | "Array controller", /* word 0, bits 12-8 = 0c */ |
| 145 | "Enclosure services", /* word 0, bits 12-8 = 0d */ |
| 146 | "Reduced block command device", /* word 0, bits 12-8 = 0e */ |
| 147 | "Optical card reader/writer", /* word 0, bits 12-8 = 0f */ |
| 148 | "", /* word 0, bits 12-8 = 10 */ |
| 149 | "", /* word 0, bits 12-8 = 11 */ |
| 150 | "", /* word 0, bits 12-8 = 12 */ |
| 151 | "", /* word 0, bits 12-8 = 13 */ |
| 152 | "", /* word 0, bits 12-8 = 14 */ |
| 153 | "", /* word 0, bits 12-8 = 15 */ |
| 154 | "", /* word 0, bits 12-8 = 16 */ |
| 155 | "", /* word 0, bits 12-8 = 17 */ |
| 156 | "", /* word 0, bits 12-8 = 18 */ |
| 157 | "", /* word 0, bits 12-8 = 19 */ |
| 158 | "", /* word 0, bits 12-8 = 1a */ |
| 159 | "", /* word 0, bits 12-8 = 1b */ |
| 160 | "", /* word 0, bits 12-8 = 1c */ |
| 161 | "", /* word 0, bits 12-8 = 1d */ |
| 162 | "", /* word 0, bits 12-8 = 1e */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 163 | "Unknown", /* word 0, bits 12-8 = 1f */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 164 | }; |
"Vladimir N. Oleynik" | b4b6d26 | 2005-10-15 14:10:36 +0000 | [diff] [blame] | 165 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 166 | static const char *const ata1_cfg_str[] = { /* word 0 in ATA-1 mode */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 167 | "Reserved", /* bit 0 */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 168 | "hard sectored", /* bit 1 */ |
| 169 | "soft sectored", /* bit 2 */ |
| 170 | "not MFM encoded ", /* bit 3 */ |
| 171 | "head switch time > 15us", /* bit 4 */ |
| 172 | "spindle motor control option", /* bit 5 */ |
| 173 | "fixed drive", /* bit 6 */ |
| 174 | "removable drive", /* bit 7 */ |
| 175 | "disk xfer rate <= 5Mbs", /* bit 8 */ |
| 176 | "disk xfer rate > 5Mbs, <= 10Mbs", /* bit 9 */ |
| 177 | "disk xfer rate > 5Mbs", /* bit 10 */ |
| 178 | "rotational speed tol.", /* bit 11 */ |
| 179 | "data strobe offset option", /* bit 12 */ |
| 180 | "track offset option", /* bit 13 */ |
| 181 | "format speed tolerance gap reqd", /* bit 14 */ |
| 182 | "ATAPI" /* bit 14 */ |
| 183 | }; |
| 184 | #endif |
| 185 | |
| 186 | /* word 1: number of logical cylinders */ |
| 187 | #define LCYLS_MAX 0x3fff /* maximum allowable value */ |
| 188 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 189 | /* word 2: specific configuration |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 190 | * (a) require SET FEATURES to spin-up |
| 191 | * (b) require spin-up to fully reply to IDENTIFY DEVICE |
| 192 | */ |
| 193 | #define STBY_NID_VAL 0x37c8 /* (a) and (b) */ |
| 194 | #define STBY_ID_VAL 0x738c /* (a) and not (b) */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 195 | #define PWRD_NID_VAL 0x8c73 /* not (a) and (b) */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 196 | #define PWRD_ID_VAL 0xc837 /* not (a) and not (b) */ |
| 197 | |
| 198 | /* words 47 & 59: sector_xfer_max & sector_xfer_cur */ |
| 199 | #define SECTOR_XFER 0x00ff /* sectors xfered on r/w multiple cmds*/ |
| 200 | #define MULTIPLE_SETTING_VALID 0x0100 /* 1=multiple sector setting is valid */ |
| 201 | |
| 202 | /* word 49: capabilities 0 */ |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 203 | #define STD_STBY 0x2000 /* 1=standard values supported (ATA); 0=vendor specific values */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 204 | #define IORDY_SUP 0x0800 /* 1=support; 0=may be supported */ |
| 205 | #define IORDY_OFF 0x0400 /* 1=may be disabled */ |
| 206 | #define LBA_SUP 0x0200 /* 1=Logical Block Address support */ |
| 207 | #define DMA_SUP 0x0100 /* 1=Direct Memory Access support */ |
| 208 | #define DMA_IL_SUP 0x8000 /* 1=interleaved DMA support (ATAPI) */ |
| 209 | #define CMD_Q_SUP 0x4000 /* 1=command queuing support (ATAPI) */ |
| 210 | #define OVLP_SUP 0x2000 /* 1=overlap operation support (ATAPI) */ |
| 211 | #define SWRST_REQ 0x1000 /* 1=ATA SW reset required (ATAPI, obsolete */ |
| 212 | |
| 213 | /* word 50: capabilities 1 */ |
| 214 | #define MIN_STANDBY_TIMER 0x0001 /* 1=device specific standby timer value minimum */ |
| 215 | |
| 216 | /* words 51 & 52: PIO & DMA cycle times */ |
| 217 | #define MODE 0xff00 /* the mode is in the MSBs */ |
| 218 | |
| 219 | /* word 53: whats_valid */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 220 | #define OK_W88 0x0004 /* the ultra_dma info is valid */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 221 | #define OK_W64_70 0x0002 /* see above for word descriptions */ |
| 222 | #define OK_W54_58 0x0001 /* current cyl, head, sector, cap. info valid */ |
| 223 | |
| 224 | /*word 63,88: dma_mode, ultra_dma_mode*/ |
| 225 | #define MODE_MAX 7 /* bit definitions force udma <=7 (when |
| 226 | * udma >=8 comes out it'll have to be |
| 227 | * defined in a new dma_mode word!) */ |
| 228 | |
| 229 | /* word 64: PIO transfer modes */ |
| 230 | #define PIO_SUP 0x00ff /* only bits 0 & 1 are used so far, */ |
| 231 | #define PIO_MODE_MAX 8 /* but all 8 bits are defined */ |
| 232 | |
| 233 | /* word 75: queue_depth */ |
| 234 | #define DEPTH_BITS 0x001f /* bits used for queue depth */ |
| 235 | |
| 236 | /* words 80-81: version numbers */ |
| 237 | /* NOVAL_0 or NOVAL_1 means device does not report version */ |
| 238 | |
| 239 | /* word 81: minor version number */ |
Rob Landley | 0e6a3e1 | 2006-04-28 01:33:30 +0000 | [diff] [blame] | 240 | #define MINOR_MAX 0x22 |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 241 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 242 | static const char *const minor_str[MINOR_MAX + 2] = { |
| 243 | /* word 81 value: */ |
| 244 | "Unspecified", /* 0x0000 */ |
| 245 | "ATA-1 X3T9.2 781D prior to rev.4", /* 0x0001 */ |
| 246 | "ATA-1 published, ANSI X3.221-1994", /* 0x0002 */ |
| 247 | "ATA-1 X3T9.2 781D rev.4", /* 0x0003 */ |
| 248 | "ATA-2 published, ANSI X3.279-1996", /* 0x0004 */ |
| 249 | "ATA-2 X3T10 948D prior to rev.2k", /* 0x0005 */ |
| 250 | "ATA-3 X3T10 2008D rev.1", /* 0x0006 */ |
| 251 | "ATA-2 X3T10 948D rev.2k", /* 0x0007 */ |
| 252 | "ATA-3 X3T10 2008D rev.0", /* 0x0008 */ |
| 253 | "ATA-2 X3T10 948D rev.3", /* 0x0009 */ |
| 254 | "ATA-3 published, ANSI X3.298-199x", /* 0x000a */ |
| 255 | "ATA-3 X3T10 2008D rev.6", /* 0x000b */ |
| 256 | "ATA-3 X3T13 2008D rev.7 and 7a", /* 0x000c */ |
| 257 | "ATA/ATAPI-4 X3T13 1153D rev.6", /* 0x000d */ |
| 258 | "ATA/ATAPI-4 T13 1153D rev.13", /* 0x000e */ |
| 259 | "ATA/ATAPI-4 X3T13 1153D rev.7", /* 0x000f */ |
| 260 | "ATA/ATAPI-4 T13 1153D rev.18", /* 0x0010 */ |
| 261 | "ATA/ATAPI-4 T13 1153D rev.15", /* 0x0011 */ |
| 262 | "ATA/ATAPI-4 published, ANSI INCITS 317-1998", /* 0x0012 */ |
| 263 | "ATA/ATAPI-5 T13 1321D rev.3", /* 0x0013 */ |
| 264 | "ATA/ATAPI-4 T13 1153D rev.14", /* 0x0014 */ |
| 265 | "ATA/ATAPI-5 T13 1321D rev.1", /* 0x0015 */ |
| 266 | "ATA/ATAPI-5 published, ANSI INCITS 340-2000", /* 0x0016 */ |
| 267 | "ATA/ATAPI-4 T13 1153D rev.17", /* 0x0017 */ |
| 268 | "ATA/ATAPI-6 T13 1410D rev.0", /* 0x0018 */ |
| 269 | "ATA/ATAPI-6 T13 1410D rev.3a", /* 0x0019 */ |
| 270 | "ATA/ATAPI-7 T13 1532D rev.1", /* 0x001a */ |
| 271 | "ATA/ATAPI-6 T13 1410D rev.2", /* 0x001b */ |
| 272 | "ATA/ATAPI-6 T13 1410D rev.1", /* 0x001c */ |
| 273 | "ATA/ATAPI-7 published, ANSI INCITS 397-2005", /* 0x001d */ |
| 274 | "ATA/ATAPI-7 T13 1532D rev.0", /* 0x001e */ |
| 275 | "Reserved" /* 0x001f */ |
| 276 | "Reserved" /* 0x0020 */ |
| 277 | "ATA/ATAPI-7 T13 1532D rev.4a", /* 0x0021 */ |
| 278 | "ATA/ATAPI-6 published, ANSI INCITS 361-2002", /* 0x0022 */ |
| 279 | "Reserved" /* 0x0023-0xfffe */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 280 | }; |
| 281 | #endif |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 282 | static const char actual_ver[MINOR_MAX + 2] ALIGN1 = { |
| 283 | /* word 81 value: */ |
| 284 | 0, /* 0x0000 WARNING: actual_ver[] array */ |
| 285 | 1, /* 0x0001 WARNING: corresponds */ |
| 286 | 1, /* 0x0002 WARNING: *exactly* */ |
| 287 | 1, /* 0x0003 WARNING: to the ATA/ */ |
| 288 | 2, /* 0x0004 WARNING: ATAPI version */ |
| 289 | 2, /* 0x0005 WARNING: listed in */ |
| 290 | 3, /* 0x0006 WARNING: the */ |
| 291 | 2, /* 0x0007 WARNING: minor_str */ |
| 292 | 3, /* 0x0008 WARNING: array */ |
| 293 | 2, /* 0x0009 WARNING: above. */ |
| 294 | 3, /* 0x000a WARNING: */ |
| 295 | 3, /* 0x000b WARNING: If you change */ |
| 296 | 3, /* 0x000c WARNING: that one, */ |
| 297 | 4, /* 0x000d WARNING: change this one */ |
| 298 | 4, /* 0x000e WARNING: too!!! */ |
| 299 | 4, /* 0x000f */ |
| 300 | 4, /* 0x0010 */ |
| 301 | 4, /* 0x0011 */ |
| 302 | 4, /* 0x0012 */ |
| 303 | 5, /* 0x0013 */ |
| 304 | 4, /* 0x0014 */ |
| 305 | 5, /* 0x0015 */ |
| 306 | 5, /* 0x0016 */ |
| 307 | 4, /* 0x0017 */ |
| 308 | 6, /* 0x0018 */ |
| 309 | 6, /* 0x0019 */ |
| 310 | 7, /* 0x001a */ |
| 311 | 6, /* 0x001b */ |
| 312 | 6, /* 0x001c */ |
| 313 | 7, /* 0x001d */ |
| 314 | 7, /* 0x001e */ |
| 315 | 0, /* 0x001f */ |
| 316 | 0, /* 0x0020 */ |
| 317 | 7, /* 0x0021 */ |
| 318 | 6, /* 0x0022 */ |
| 319 | 0 /* 0x0023-0xfffe */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 320 | }; |
| 321 | |
| 322 | /* words 82-84: cmds/feats supported */ |
| 323 | #define CMDS_W82 0x77ff /* word 82: defined command locations*/ |
| 324 | #define CMDS_W83 0x3fff /* word 83: defined command locations*/ |
| 325 | #define CMDS_W84 0x002f /* word 83: defined command locations*/ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 326 | #define SUPPORT_48_BIT 0x0400 |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 327 | #define NUM_CMD_FEAT_STR 48 |
| 328 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 329 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 330 | static const char *const cmd_feat_str[] = { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 331 | "", /* word 82 bit 15: obsolete */ |
| 332 | "NOP cmd", /* word 82 bit 14 */ |
| 333 | "READ BUFFER cmd", /* word 82 bit 13 */ |
| 334 | "WRITE BUFFER cmd", /* word 82 bit 12 */ |
| 335 | "", /* word 82 bit 11: obsolete */ |
| 336 | "Host Protected Area feature set", /* word 82 bit 10 */ |
| 337 | "DEVICE RESET cmd", /* word 82 bit 9 */ |
| 338 | "SERVICE interrupt", /* word 82 bit 8 */ |
| 339 | "Release interrupt", /* word 82 bit 7 */ |
| 340 | "Look-ahead", /* word 82 bit 6 */ |
| 341 | "Write cache", /* word 82 bit 5 */ |
| 342 | "PACKET command feature set", /* word 82 bit 4 */ |
| 343 | "Power Management feature set", /* word 82 bit 3 */ |
| 344 | "Removable Media feature set", /* word 82 bit 2 */ |
| 345 | "Security Mode feature set", /* word 82 bit 1 */ |
| 346 | "SMART feature set", /* word 82 bit 0 */ |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 347 | /* -------------- */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 348 | "", /* word 83 bit 15: !valid bit */ |
| 349 | "", /* word 83 bit 14: valid bit */ |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 350 | "FLUSH CACHE EXT cmd", /* word 83 bit 13 */ |
| 351 | "Mandatory FLUSH CACHE cmd ", /* word 83 bit 12 */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 352 | "Device Configuration Overlay feature set ", |
| 353 | "48-bit Address feature set ", /* word 83 bit 10 */ |
| 354 | "", |
| 355 | "SET MAX security extension", /* word 83 bit 8 */ |
| 356 | "Address Offset Reserved Area Boot", /* word 83 bit 7 */ |
| 357 | "SET FEATURES subcommand required to spinup after power up", |
| 358 | "Power-Up In Standby feature set", /* word 83 bit 5 */ |
| 359 | "Removable Media Status Notification feature set", |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 360 | "Adv. Power Management feature set", /* word 83 bit 3 */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 361 | "CFA feature set", /* word 83 bit 2 */ |
| 362 | "READ/WRITE DMA QUEUED", /* word 83 bit 1 */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 363 | "DOWNLOAD MICROCODE cmd", /* word 83 bit 0 */ |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 364 | /* -------------- */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 365 | "", /* word 84 bit 15: !valid bit */ |
| 366 | "", /* word 84 bit 14: valid bit */ |
| 367 | "", /* word 84 bit 13: reserved */ |
| 368 | "", /* word 84 bit 12: reserved */ |
| 369 | "", /* word 84 bit 11: reserved */ |
| 370 | "", /* word 84 bit 10: reserved */ |
| 371 | "", /* word 84 bit 9: reserved */ |
| 372 | "", /* word 84 bit 8: reserved */ |
| 373 | "", /* word 84 bit 7: reserved */ |
| 374 | "", /* word 84 bit 6: reserved */ |
| 375 | "General Purpose Logging feature set", /* word 84 bit 5 */ |
| 376 | "", /* word 84 bit 4: reserved */ |
| 377 | "Media Card Pass Through Command feature set ", |
| 378 | "Media serial number ", /* word 84 bit 2 */ |
| 379 | "SMART self-test ", /* word 84 bit 1 */ |
| 380 | "SMART error logging " /* word 84 bit 0 */ |
| 381 | }; |
Rob Landley | 0f0b645 | 2006-05-03 18:28:06 +0000 | [diff] [blame] | 382 | |
| 383 | static void identify(uint16_t *id_supplied) ATTRIBUTE_NORETURN; |
| 384 | static void identify_from_stdin(void) ATTRIBUTE_NORETURN; |
Rob Landley | 9c6f955 | 2006-06-08 14:11:36 +0000 | [diff] [blame] | 385 | #else |
| 386 | void identify_from_stdin(void); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 387 | #endif |
| 388 | |
| 389 | |
| 390 | /* words 85-87: cmds/feats enabled */ |
| 391 | /* use cmd_feat_str[] to display what commands and features have |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 392 | * been enabled with words 85-87 |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 393 | */ |
| 394 | |
| 395 | /* words 89, 90, SECU ERASE TIME */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 396 | #define ERASE_BITS 0x00ff |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 397 | |
| 398 | /* word 92: master password revision */ |
| 399 | /* NOVAL_0 or NOVAL_1 means no support for master password revision */ |
| 400 | |
| 401 | /* word 93: hw reset result */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 402 | #define CBLID 0x2000 /* CBLID status */ |
| 403 | #define RST0 0x0001 /* 1=reset to device #0 */ |
| 404 | #define DEV_DET 0x0006 /* how device num determined */ |
| 405 | #define JUMPER_VAL 0x0002 /* device num determined by jumper */ |
| 406 | #define CSEL_VAL 0x0004 /* device num determined by CSEL_VAL */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 407 | |
| 408 | /* word 127: removable media status notification feature set support */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 409 | #define RM_STAT_BITS 0x0003 |
| 410 | #define RM_STAT_SUP 0x0001 |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 411 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 412 | /* word 128: security */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 413 | #define SECU_ENABLED 0x0002 |
| 414 | #define SECU_LEVEL 0x0010 |
| 415 | #define NUM_SECU_STR 6 |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 416 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 417 | static const char *const secu_str[] = { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 418 | "supported", /* word 128, bit 0 */ |
| 419 | "enabled", /* word 128, bit 1 */ |
| 420 | "locked", /* word 128, bit 2 */ |
| 421 | "frozen", /* word 128, bit 3 */ |
| 422 | "expired: security count", /* word 128, bit 4 */ |
| 423 | "supported: enhanced erase" /* word 128, bit 5 */ |
| 424 | }; |
| 425 | #endif |
| 426 | |
| 427 | /* word 160: CFA power mode */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 428 | #define VALID_W160 0x8000 /* 1=word valid */ |
| 429 | #define PWR_MODE_REQ 0x2000 /* 1=CFA power mode req'd by some cmds*/ |
| 430 | #define PWR_MODE_OFF 0x1000 /* 1=CFA power moded disabled */ |
| 431 | #define MAX_AMPS 0x0fff /* value = max current in ma */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 432 | |
| 433 | /* word 255: integrity */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 434 | #define SIG 0x00ff /* signature location */ |
| 435 | #define SIG_VAL 0x00a5 /* signature value */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 436 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 437 | #define TIMING_MB 64 |
| 438 | #define TIMING_BUF_MB 1 |
| 439 | #define TIMING_BUF_BYTES (TIMING_BUF_MB * 1024 * 1024) |
| 440 | #define BUFCACHE_FACTOR 2 |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 441 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 442 | #undef DO_FLUSHCACHE /* under construction: force cache flush on -W0 */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 443 | |
| 444 | /* Busybox messages and functions */ |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 445 | #if ENABLE_IOCTL_HEX2STR_ERROR |
| 446 | static int ioctl_alt_func(int fd, int cmd, unsigned char *args, int alt, const char *string) |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 447 | { |
| 448 | if (!ioctl(fd, cmd, args)) |
| 449 | return 0; |
| 450 | args[0] = alt; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 451 | return bb_ioctl_or_warn(fd, cmd, args, string); |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 452 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 453 | #define ioctl_alt_or_warn(fd,cmd,args,alt) ioctl_alt_func(fd,cmd,args,alt,#cmd) |
| 454 | #else |
| 455 | static int ioctl_alt_func(int fd, int cmd, unsigned char *args, int alt) |
| 456 | { |
| 457 | if (!ioctl(fd, cmd, args)) |
| 458 | return 0; |
| 459 | args[0] = alt; |
| 460 | return bb_ioctl_or_warn(fd, cmd, args); |
| 461 | } |
| 462 | #define ioctl_alt_or_warn(fd,cmd,args,alt) ioctl_alt_func(fd,cmd,args,alt) |
| 463 | #endif |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 464 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 465 | static void on_off(int value) |
| 466 | { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 467 | puts(value ? " (on)" : " (off)"); |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 468 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 469 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 470 | static void print_flag_on_off(int get_arg, const char *s, unsigned long arg) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 471 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 472 | if (get_arg) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 473 | printf(" setting %s to %ld", s, arg); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 474 | on_off(arg); |
| 475 | } |
| 476 | } |
| 477 | |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 478 | static void print_value_on_off(const char *str, unsigned long argp) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 479 | { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 480 | printf(" %s\t= %2ld", str, argp); |
| 481 | on_off(argp != 0); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 482 | } |
Eric Andersen | 416c242 | 2003-12-12 00:08:57 +0000 | [diff] [blame] | 483 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 484 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 485 | static void print_ascii(uint16_t *p, uint8_t length); |
| 486 | |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 487 | static void xprint_ascii(uint16_t *val, int i, const char *string, int n) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 488 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 489 | if (val[i]) { |
| 490 | printf("\t%-20s", string); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 491 | print_ascii(&val[i], n); |
| 492 | } |
| 493 | } |
Eric Andersen | 416c242 | 2003-12-12 00:08:57 +0000 | [diff] [blame] | 494 | #endif |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 495 | /* end of busybox specific stuff */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 496 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 497 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 498 | static uint8_t mode_loop(uint16_t mode_sup, uint16_t mode_sel, int cc, uint8_t *have_mode) |
| 499 | { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 500 | uint16_t ii; |
| 501 | uint8_t err_dma = 0; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 502 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 503 | for (ii = 0; ii <= MODE_MAX; ii++) { |
| 504 | if (mode_sel & 0x0001) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 505 | printf("*%cdma%u ", cc, ii); |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 506 | if (*have_mode) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 507 | err_dma = 1; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 508 | *have_mode = 1; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 509 | } else if (mode_sup & 0x0001) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 510 | printf("%cdma%u ", cc, ii); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 511 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 512 | mode_sup >>= 1; |
| 513 | mode_sel >>= 1; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 514 | } |
| 515 | return err_dma; |
| 516 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 517 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 518 | static void print_ascii(uint16_t *p, uint8_t length) |
| 519 | { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 520 | uint8_t ii; |
| 521 | char cl; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 522 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 523 | /* find first non-space & print it */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 524 | for (ii = 0; ii < length; ii++) { |
| 525 | if ((char)((*p)>>8) != ' ') |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 526 | break; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 527 | cl = (char)(*p); |
| 528 | if (cl != ' ') { |
| 529 | if (cl != '\0') |
| 530 | printf("%c", cl); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 531 | p++; |
| 532 | ii++; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 533 | break; |
| 534 | } |
| 535 | p++; |
| 536 | } |
| 537 | /* print the rest */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 538 | for (; ii< length; ii++) { |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 539 | if (!(*p)) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 540 | break; /* some older devices have NULLs */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 541 | printf("%c%c", (char)((*p)>>8), (char)(*p)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 542 | p++; |
| 543 | } |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 544 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 547 | // Parse 512 byte disk identification block and print much crap. |
| 548 | |
Rob Landley | 6389ff1 | 2006-05-01 19:28:53 +0000 | [diff] [blame] | 549 | static void identify(uint16_t *id_supplied) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 550 | { |
Rob Landley | 5bc3f05 | 2006-04-29 19:11:24 +0000 | [diff] [blame] | 551 | uint16_t buf[256]; |
| 552 | uint16_t *val, ii, jj, kk; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 553 | uint16_t like_std = 1, std = 0, min_std = 0xffff; |
| 554 | uint16_t dev = NO_DEV, eqpt = NO_DEV; |
| 555 | uint8_t have_mode = 0, err_dma = 0; |
| 556 | uint8_t chksum = 0; |
| 557 | uint32_t ll, mm, nn, oo; |
Rob Landley | 2e2d752 | 2006-04-29 15:23:33 +0000 | [diff] [blame] | 558 | uint64_t bbbig; /* (:) */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 559 | const char *strng; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 560 | |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 561 | // Adjust for endianness if necessary. |
| 562 | |
Rob Landley | 5bc3f05 | 2006-04-29 19:11:24 +0000 | [diff] [blame] | 563 | if (BB_BIG_ENDIAN) { |
| 564 | swab(id_supplied, buf, sizeof(buf)); |
| 565 | val = buf; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 566 | } else |
| 567 | val = id_supplied; |
Rob Landley | 5bc3f05 | 2006-04-29 19:11:24 +0000 | [diff] [blame] | 568 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 569 | chksum &= 0xff; |
| 570 | |
| 571 | /* check if we recognise the device type */ |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 572 | puts(""); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 573 | if (!(val[GEN_CONFIG] & NOT_ATA)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 574 | dev = ATA_DEV; |
| 575 | printf("ATA device, with "); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 576 | } else if (val[GEN_CONFIG]==CFA_SUPPORT_VAL) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 577 | dev = ATA_DEV; |
| 578 | like_std = 4; |
| 579 | printf("CompactFlash ATA device, with "); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 580 | } else if (!(val[GEN_CONFIG] & NOT_ATAPI)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 581 | dev = ATAPI_DEV; |
| 582 | eqpt = (val[GEN_CONFIG] & EQPT_TYPE) >> SHIFT_EQPT; |
| 583 | printf("ATAPI %s, with ", pkt_str[eqpt]); |
| 584 | like_std = 3; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 585 | } else |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 586 | /*"Unknown device type:\n\tbits 15&14 of general configuration word 0 both set to 1.\n"*/ |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 587 | bb_error_msg_and_die("unknown device type"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 588 | |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 589 | printf("%sremovable media\n", !(val[GEN_CONFIG] & MEDIA_REMOVABLE) ? "non-" : ""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 590 | /* Info from the specific configuration word says whether or not the |
| 591 | * ID command completed correctly. It is only defined, however in |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 592 | * ATA/ATAPI-5 & 6; it is reserved (value theoretically 0) in prior |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 593 | * standards. Since the values allowed for this word are extremely |
| 594 | * specific, it should be safe to check it now, even though we don't |
| 595 | * know yet what standard this device is using. |
| 596 | */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 597 | if ((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL) |
| 598 | || (val[CONFIG]==PWRD_NID_VAL) || (val[CONFIG]==PWRD_ID_VAL) |
| 599 | ) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 600 | like_std = 5; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 601 | if ((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==STBY_ID_VAL)) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 602 | printf("powers-up in standby; SET FEATURES subcmd spins-up.\n"); |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 603 | if (((val[CONFIG]==STBY_NID_VAL) || (val[CONFIG]==PWRD_NID_VAL)) && (val[GEN_CONFIG] & INCOMPLETE)) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 604 | printf("\n\tWARNING: ID response incomplete.\n\tFollowing data may be incorrect.\n\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | /* output the model and serial numbers and the fw revision */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 608 | xprint_ascii(val, START_MODEL, "Model Number:", LENGTH_MODEL); |
| 609 | xprint_ascii(val, START_SERIAL, "Serial Number:", LENGTH_SERIAL); |
| 610 | xprint_ascii(val, START_FW_REV, "Firmware Revision:", LENGTH_FW_REV); |
| 611 | xprint_ascii(val, START_MEDIA, "Media Serial Num:", LENGTH_MEDIA); |
| 612 | xprint_ascii(val, START_MANUF, "Media Manufacturer:", LENGTH_MANUF); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 613 | |
| 614 | /* major & minor standards version number (Note: these words were not |
| 615 | * defined until ATA-3 & the CDROM std uses different words.) */ |
| 616 | printf("Standards:"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 617 | if (eqpt != CDROM) { |
| 618 | if (val[MINOR] && (val[MINOR] <= MINOR_MAX)) { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 619 | if (like_std < 3) like_std = 3; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 620 | std = actual_ver[val[MINOR]]; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 621 | if (std) printf("\n\tUsed: %s ", minor_str[val[MINOR]]); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 622 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 623 | } |
| 624 | /* looks like when they up-issue the std, they obsolete one; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 625 | * thus, only the newest 4 issues need be supported. (That's |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 626 | * what "kk" and "min_std" are all about.) */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 627 | if (val[MAJOR] && (val[MAJOR] != NOVAL_1)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 628 | printf("\n\tSupported: "); |
| 629 | jj = val[MAJOR] << 1; |
| 630 | kk = like_std >4 ? like_std-4: 0; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 631 | for (ii = 14; (ii >0)&&(ii>kk); ii--) { |
| 632 | if (jj & 0x8000) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 633 | printf("%u ", ii); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 634 | if (like_std < ii) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 635 | like_std = ii; |
| 636 | kk = like_std >4 ? like_std-4: 0; |
| 637 | } |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 638 | if (min_std > ii) min_std = ii; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 639 | } |
| 640 | jj <<= 1; |
| 641 | } |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 642 | if (like_std < 3) like_std = 3; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 643 | } |
| 644 | /* Figure out what standard the device is using if it hasn't told |
| 645 | * us. If we know the std, check if the device is using any of |
| 646 | * the words from the next level up. It happens. |
| 647 | */ |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 648 | if (like_std < std) like_std = std; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 649 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 650 | if (((std == 5) || (!std && (like_std < 6))) && |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 651 | ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) && |
| 652 | (( val[CMDS_SUPP_1] & CMDS_W83) > 0x00ff)) || |
| 653 | ((( val[CMDS_SUPP_2] & VALID) == VALID_VAL) && |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 654 | ( val[CMDS_SUPP_2] & CMDS_W84) ) ) |
| 655 | ) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 656 | like_std = 6; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 657 | } else if (((std == 4) || (!std && (like_std < 5))) && |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 658 | ((((val[INTEGRITY] & SIG) == SIG_VAL) && !chksum) || |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 659 | (( val[HWRST_RSLT] & VALID) == VALID_VAL) || |
| 660 | ((( val[CMDS_SUPP_1] & VALID) == VALID_VAL) && |
| 661 | (( val[CMDS_SUPP_1] & CMDS_W83) > 0x001f)) ) ) |
| 662 | { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 663 | like_std = 5; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 664 | } else if (((std == 3) || (!std && (like_std < 4))) && |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 665 | ((((val[CMDS_SUPP_1] & VALID) == VALID_VAL) && |
| 666 | ((( val[CMDS_SUPP_1] & CMDS_W83) > 0x0000) || |
| 667 | (( val[CMDS_SUPP_0] & CMDS_W82) > 0x000f))) || |
| 668 | (( val[CAPAB_1] & VALID) == VALID_VAL) || |
| 669 | (( val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA]) || |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 670 | (( val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP) ) |
| 671 | ) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 672 | like_std = 4; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 673 | } else if (((std == 2) || (!std && (like_std < 3))) |
| 674 | && ((val[CMDS_SUPP_1] & VALID) == VALID_VAL) |
| 675 | ) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 676 | like_std = 3; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 677 | } else if (((std == 1) || (!std && (like_std < 2))) && |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 678 | ((val[CAPAB_0] & (IORDY_SUP | IORDY_OFF)) || |
| 679 | (val[WHATS_VALID] & OK_W64_70)) ) |
| 680 | { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 681 | like_std = 2; |
| 682 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 683 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 684 | if (!std) |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 685 | printf("\n\tLikely used: %u\n", like_std); |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 686 | else if (like_std > std) |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 687 | printf("& some of %u\n", like_std); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 688 | else |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 689 | puts(""); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 690 | } else { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 691 | /* TBD: do CDROM stuff more thoroughly. For now... */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 692 | kk = 0; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 693 | if (val[CDR_MINOR] == 9) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 694 | kk = 1; |
| 695 | printf("\n\tUsed: ATAPI for CD-ROMs, SFF-8020i, r2.5"); |
| 696 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 697 | if (val[CDR_MAJOR] && (val[CDR_MAJOR] !=NOVAL_1)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 698 | kk = 1; |
| 699 | printf("\n\tSupported: CD-ROM ATAPI"); |
| 700 | jj = val[CDR_MAJOR] >> 1; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 701 | for (ii = 1; ii < 15; ii++) { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 702 | if (jj & 0x0001) printf("-%u ", ii); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 703 | jj >>= 1; |
| 704 | } |
| 705 | } |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 706 | printf("%s\n", kk ? "" : "\n\tLikely used CD-ROM ATAPI-1"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 707 | /* the cdrom stuff is more like ATA-2 than anything else, so: */ |
| 708 | like_std = 2; |
| 709 | } |
| 710 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 711 | if (min_std == 0xffff) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 712 | min_std = like_std > 4 ? like_std - 3 : 1; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 713 | |
| 714 | printf("Configuration:\n"); |
| 715 | /* more info from the general configuration word */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 716 | if ((eqpt != CDROM) && (like_std == 1)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 717 | jj = val[GEN_CONFIG] >> 1; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 718 | for (ii = 1; ii < 15; ii++) { |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 719 | if (jj & 0x0001) |
| 720 | printf("\t%s\n", ata1_cfg_str[ii]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 721 | jj >>=1; |
| 722 | } |
| 723 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 724 | if (dev == ATAPI_DEV) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 725 | if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_3MS_VAL) |
| 726 | strng = "3ms"; |
| 727 | else if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_INTR_VAL) |
| 728 | strng = "<=10ms with INTRQ"; |
| 729 | else if ((val[GEN_CONFIG] & DRQ_RESPONSE_TIME) == DRQ_50US_VAL) |
| 730 | strng ="50us"; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 731 | else |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 732 | strng = "Unknown"; |
| 733 | printf("\tDRQ response: %s\n\tPacket size: ", strng); /* Data Request (DRQ) */ |
| 734 | |
| 735 | if ((val[GEN_CONFIG] & PKT_SIZE_SUPPORTED) == PKT_SIZE_12_VAL) |
| 736 | strng = "12 bytes"; |
| 737 | else if ((val[GEN_CONFIG] & PKT_SIZE_SUPPORTED) == PKT_SIZE_16_VAL) |
| 738 | strng = "16 bytes"; |
| 739 | else |
| 740 | strng = "Unknown"; |
| 741 | puts(strng); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 742 | } else { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 743 | /* addressing...CHS? See section 6.2 of ATA specs 4 or 5 */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 744 | ll = (uint32_t)val[LBA_SECTS_MSB] << 16 | val[LBA_SECTS_LSB]; |
| 745 | mm = 0; bbbig = 0; |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 746 | if ((ll > 0x00FBFC10) && (!val[LCYLS])) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 747 | printf("\tCHS addressing not supported\n"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 748 | else { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 749 | jj = val[WHATS_VALID] & OK_W54_58; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 750 | 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", |
| 751 | val[LCYLS],jj?val[LCYLS_CUR]:0, val[LHEADS],jj?val[LHEADS_CUR]:0, val[LSECTS],jj?val[LSECTS_CUR]:0); |
| 752 | |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 753 | if ((min_std == 1) && (val[TRACK_BYTES] || val[SECT_BYTES])) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 754 | printf("\tbytes/track: %u\tbytes/sector: %u\n", val[TRACK_BYTES], val[SECT_BYTES]); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 755 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 756 | if (jj) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 757 | mm = (uint32_t)val[CAPACITY_MSB] << 16 | val[CAPACITY_LSB]; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 758 | if (like_std < 3) { |
| 759 | /* check Endian of capacity bytes */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 760 | nn = val[LCYLS_CUR] * val[LHEADS_CUR] * val[LSECTS_CUR]; |
| 761 | oo = (uint32_t)val[CAPACITY_LSB] << 16 | val[CAPACITY_MSB]; |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 762 | if (abs(mm - nn) > abs(oo - nn)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 763 | mm = oo; |
| 764 | } |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 765 | printf("\tCHS current addressable sectors:%11u\n", mm); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 766 | } |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 767 | } |
| 768 | /* LBA addressing */ |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 769 | printf("\tLBA user addressable sectors:%11u\n", ll); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 770 | if (((val[CMDS_SUPP_1] & VALID) == VALID_VAL) |
| 771 | && (val[CMDS_SUPP_1] & SUPPORT_48_BIT) |
| 772 | ) { |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 773 | bbbig = (uint64_t)val[LBA_64_MSB] << 48 | |
| 774 | (uint64_t)val[LBA_48_MSB] << 32 | |
| 775 | (uint64_t)val[LBA_MID] << 16 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 776 | val[LBA_LSB]; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 777 | printf("\tLBA48 user addressable sectors:%11"PRIu64"\n", bbbig); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 778 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 779 | |
| 780 | if (!bbbig) |
Rob Landley | 2e2d752 | 2006-04-29 15:23:33 +0000 | [diff] [blame] | 781 | bbbig = (uint64_t)(ll>mm ? ll : mm); /* # 512 byte blocks */ |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 782 | printf("\tdevice size with M = 1024*1024: %11"PRIu64" MBytes\n", bbbig>>11); |
| 783 | bbbig = (bbbig << 9) / 1000000; |
| 784 | printf("\tdevice size with M = 1000*1000: %11"PRIu64" MBytes ", bbbig); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 785 | |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 786 | if (bbbig > 1000) |
Rob Landley | 81dab2c | 2006-05-28 01:56:08 +0000 | [diff] [blame] | 787 | printf("(%"PRIu64" GB)\n", bbbig/1000); |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 788 | else |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 789 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* hw support of commands (capabilities) */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 793 | printf("Capabilities:\n\t"); |
| 794 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 795 | if (dev == ATAPI_DEV) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 796 | if (eqpt != CDROM && (val[CAPAB_0] & CMD_Q_SUP)) printf("Cmd queuing, "); |
| 797 | if (val[CAPAB_0] & OVLP_SUP) printf("Cmd overlap, "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 798 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 799 | if (val[CAPAB_0] & LBA_SUP) printf("LBA, "); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 800 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 801 | if (like_std != 1) { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 802 | printf("IORDY%s(can%s be disabled)\n", |
| 803 | !(val[CAPAB_0] & IORDY_SUP) ? "(may be)" : "", |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 804 | (val[CAPAB_0] & IORDY_OFF) ? "" :"not"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 805 | } else |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 806 | printf("no IORDY\n"); |
| 807 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 808 | if ((like_std == 1) && val[BUF_TYPE]) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 809 | printf("\tBuffer type: %04x: %s%s\n", val[BUF_TYPE], |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 810 | (val[BUF_TYPE] < 2) ? "single port, single-sector" : "dual port, multi-sector", |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 811 | (val[BUF_TYPE] > 2) ? " with read caching ability" : ""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 812 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 813 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 814 | if ((min_std == 1) && (val[BUFFER__SIZE] && (val[BUFFER__SIZE] != NOVAL_1))) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 815 | printf("\tBuffer size: %.1fkB\n", (float)val[BUFFER__SIZE]/2); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 816 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 817 | if ((min_std < 4) && (val[RW_LONG])) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 818 | printf("\tbytes avail on r/w long: %u\n", val[RW_LONG]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 819 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 820 | if ((eqpt != CDROM) && (like_std > 3)) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 821 | printf("\tQueue depth: %u\n", (val[QUEUE_DEPTH] & DEPTH_BITS) + 1); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 822 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 823 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 824 | if (dev == ATA_DEV) { |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 825 | if (like_std == 1) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 826 | printf("\tCan%s perform double-word IO\n", (!val[DWORD_IO]) ? "not" : ""); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 827 | else { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 828 | printf("\tStandby timer values: spec'd by %s", (val[CAPAB_0] & STD_STBY) ? "Standard" : "Vendor"); |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 829 | if ((like_std > 3) && ((val[CAPAB_1] & VALID) == VALID_VAL)) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 830 | printf(", %s device specific minimum\n", (val[CAPAB_1] & MIN_STANDBY_TIMER) ? "with" : "no"); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 831 | else |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 832 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 833 | } |
| 834 | printf("\tR/W multiple sector transfer: "); |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 835 | if ((like_std < 3) && !(val[SECTOR_XFER_MAX] & SECTOR_XFER)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 836 | printf("not supported\n"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 837 | else { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 838 | printf("Max = %u\tCurrent = ", val[SECTOR_XFER_MAX] & SECTOR_XFER); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 839 | if (val[SECTOR_XFER_CUR] & MULTIPLE_SETTING_VALID) |
| 840 | printf("%u\n", val[SECTOR_XFER_CUR] & SECTOR_XFER); |
| 841 | else |
| 842 | printf("?\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 843 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 844 | if ((like_std > 3) && (val[CMDS_SUPP_1] & 0x0008)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 845 | /* We print out elsewhere whether the APM feature is enabled or |
| 846 | not. If it's not enabled, let's not repeat the info; just print |
| 847 | nothing here. */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 848 | printf("\tAdvancedPM level: "); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 849 | if ((val[ADV_PWR] & 0xFF00) == 0x4000) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 850 | uint8_t apm_level = val[ADV_PWR] & 0x00FF; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 851 | printf("%u (0x%x)\n", apm_level, apm_level); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 852 | } |
| 853 | else |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 854 | printf("unknown setting (0x%04x)\n", val[ADV_PWR]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 855 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 856 | if (like_std > 5 && val[ACOUSTIC]) { |
| 857 | printf("\tRecommended acoustic management value: %u, current value: %u\n", |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 858 | (val[ACOUSTIC] >> 8) & 0x00ff, val[ACOUSTIC] & 0x00ff); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 859 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 860 | } else { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 861 | /* ATAPI */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 862 | if (eqpt != CDROM && (val[CAPAB_0] & SWRST_REQ)) |
| 863 | printf("\tATA sw reset required\n"); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 864 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 865 | if (val[PKT_REL] || val[SVC_NBSY]) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 866 | printf("\tOverlap support:"); |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 867 | if (val[PKT_REL]) printf(" %uus to release bus.", val[PKT_REL]); |
| 868 | if (val[SVC_NBSY]) printf(" %uus to clear BSY after SERVICE cmd.", val[SVC_NBSY]); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 869 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 870 | } |
| 871 | } |
| 872 | |
| 873 | /* DMA stuff. Check that only one DMA mode is selected. */ |
| 874 | printf("\tDMA: "); |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 875 | if (!(val[CAPAB_0] & DMA_SUP)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 876 | printf("not supported\n"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 877 | else { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 878 | if (val[DMA_MODE] && !val[SINGLE_DMA] && !val[MULTI_DMA]) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 879 | printf(" sdma%u\n", (val[DMA_MODE] & MODE) >> 8); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 880 | if (val[SINGLE_DMA]) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 881 | jj = val[SINGLE_DMA]; |
| 882 | kk = val[SINGLE_DMA] >> 8; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 883 | err_dma += mode_loop(jj, kk, 's', &have_mode); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 884 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 885 | if (val[MULTI_DMA]) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 886 | jj = val[MULTI_DMA]; |
| 887 | kk = val[MULTI_DMA] >> 8; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 888 | err_dma += mode_loop(jj, kk, 'm', &have_mode); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 889 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 890 | if ((val[WHATS_VALID] & OK_W88) && val[ULTRA_DMA]) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 891 | jj = val[ULTRA_DMA]; |
| 892 | kk = val[ULTRA_DMA] >> 8; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 893 | err_dma += mode_loop(jj, kk, 'u', &have_mode); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 894 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 895 | if (err_dma || !have_mode) printf("(?)"); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 896 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 897 | |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 898 | if ((dev == ATAPI_DEV) && (eqpt != CDROM) && (val[CAPAB_0] & DMA_IL_SUP)) |
| 899 | printf("\t\tInterleaved DMA support\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 900 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 901 | if ((val[WHATS_VALID] & OK_W64_70) |
| 902 | && (val[DMA_TIME_MIN] || val[DMA_TIME_NORM]) |
| 903 | ) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 904 | printf("\t\tCycle time:"); |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 905 | if (val[DMA_TIME_MIN]) printf(" min=%uns", val[DMA_TIME_MIN]); |
| 906 | if (val[DMA_TIME_NORM]) printf(" recommended=%uns", val[DMA_TIME_NORM]); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 907 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 908 | } |
| 909 | } |
| 910 | |
| 911 | /* Programmed IO stuff */ |
| 912 | printf("\tPIO: "); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 913 | /* If a drive supports mode n (e.g. 3), it also supports all modes less |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 914 | * than n (e.g. 3, 2, 1 and 0). Print all the modes. */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 915 | if ((val[WHATS_VALID] & OK_W64_70) && (val[ADV_PIO_MODES] & PIO_SUP)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 916 | jj = ((val[ADV_PIO_MODES] & PIO_SUP) << 3) | 0x0007; |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 917 | for (ii = 0; ii <= PIO_MODE_MAX; ii++) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 918 | if (jj & 0x0001) printf("pio%d ", ii); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 919 | jj >>=1; |
| 920 | } |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 921 | puts(""); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 922 | } else if (((min_std < 5) || (eqpt == CDROM)) && (val[PIO_MODE] & MODE)) { |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 923 | for (ii = 0; ii <= val[PIO_MODE]>>8; ii++) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 924 | printf("pio%d ", ii); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 925 | puts(""); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 926 | } else |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 927 | printf("unknown\n"); |
| 928 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 929 | if (val[WHATS_VALID] & OK_W64_70) { |
| 930 | if (val[PIO_NO_FLOW] || val[PIO_FLOW]) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 931 | printf("\t\tCycle time:"); |
| 932 | if (val[PIO_NO_FLOW]) printf(" no flow control=%uns", val[PIO_NO_FLOW]); |
| 933 | if (val[PIO_FLOW]) printf(" IORDY flow control=%uns", val[PIO_FLOW]); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 934 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 935 | } |
| 936 | } |
| 937 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 938 | if ((val[CMDS_SUPP_1] & VALID) == VALID_VAL) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 939 | printf("Commands/features:\n\tEnabled\tSupported:\n"); |
| 940 | jj = val[CMDS_SUPP_0]; |
| 941 | kk = val[CMDS_EN_0]; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 942 | for (ii = 0; ii < NUM_CMD_FEAT_STR; ii++) { |
| 943 | if ((jj & 0x8000) && (*cmd_feat_str[ii] != '\0')) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 944 | printf("\t%s\t%s\n", (kk & 0x8000) ? " *" : "", cmd_feat_str[ii]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 945 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 946 | jj <<= 1; |
| 947 | kk <<= 1; |
| 948 | if (ii % 16 == 15) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 949 | jj = val[CMDS_SUPP_0+1+(ii/16)]; |
| 950 | kk = val[CMDS_EN_0+1+(ii/16)]; |
| 951 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 952 | if (ii == 31) { |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 953 | if ((val[CMDS_SUPP_2] & VALID) != VALID_VAL) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 954 | ii +=16; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 955 | } |
| 956 | } |
| 957 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 958 | /* Removable Media Status Notification feature set */ |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 959 | if ((val[RM_STAT] & RM_STAT_BITS) == RM_STAT_SUP) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 960 | printf("\t%s supported\n", cmd_feat_str[27]); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 961 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 962 | /* security */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 963 | if ((eqpt != CDROM) && (like_std > 3) |
| 964 | && (val[SECU_STATUS] || val[ERASE_TIME] || val[ENH_ERASE_TIME]) |
| 965 | ) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 966 | printf("Security:\n"); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 967 | if (val[PSWD_CODE] && (val[PSWD_CODE] != NOVAL_1)) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 968 | printf("\tMaster password revision code = %u\n", val[PSWD_CODE]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 969 | jj = val[SECU_STATUS]; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 970 | if (jj) { |
| 971 | for (ii = 0; ii < NUM_SECU_STR; ii++) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 972 | printf("\t%s\t%s\n", (!(jj & 0x0001)) ? "not" : "", secu_str[ii]); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 973 | jj >>=1; |
| 974 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 975 | if (val[SECU_STATUS] & SECU_ENABLED) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 976 | printf("\tSecurity level %s\n", (val[SECU_STATUS] & SECU_LEVEL) ? "maximum" : "high"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 977 | } |
| 978 | } |
| 979 | jj = val[ERASE_TIME] & ERASE_BITS; |
| 980 | kk = val[ENH_ERASE_TIME] & ERASE_BITS; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 981 | if (jj || kk) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 982 | printf("\t"); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 983 | if (jj) printf("%umin for %sSECURITY ERASE UNIT. ", jj==ERASE_BITS ? 508 : jj<<1, ""); |
| 984 | if (kk) printf("%umin for %sSECURITY ERASE UNIT. ", kk==ERASE_BITS ? 508 : kk<<1, "ENHANCED "); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 985 | puts(""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 986 | } |
| 987 | } |
| 988 | |
| 989 | /* reset result */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 990 | jj = val[HWRST_RSLT]; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 991 | if ((jj & VALID) == VALID_VAL) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 992 | if (!(oo = (jj & RST0))) |
| 993 | jj >>= 8; |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 994 | if ((jj & DEV_DET) == JUMPER_VAL) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 995 | strng = " determined by the jumper"; |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 996 | else if ((jj & DEV_DET) == CSEL_VAL) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 997 | strng = " determined by CSEL"; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 998 | else |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 999 | strng = ""; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1000 | printf("HW reset results:\n\tCBLID- %s Vih\n\tDevice num = %i%s\n", |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1001 | (val[HWRST_RSLT] & CBLID) ? "above" : "below", !(oo), strng); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | /* more stuff from std 5 */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1005 | if ((like_std > 4) && (eqpt != CDROM)) { |
| 1006 | if (val[CFA_PWR_MODE] & VALID_W160) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1007 | printf("CFA power mode 1:\n\t%s%s\n", (val[CFA_PWR_MODE] & PWR_MODE_OFF) ? "disabled" : "enabled", |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1008 | (val[CFA_PWR_MODE] & PWR_MODE_REQ) ? " and required by some commands" : ""); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1009 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1010 | if (val[CFA_PWR_MODE] & MAX_AMPS) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1011 | printf("\tMaximum current = %uma\n", val[CFA_PWR_MODE] & MAX_AMPS); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1012 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1013 | if ((val[INTEGRITY] & SIG) == SIG_VAL) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1014 | printf("Checksum: %scorrect\n", chksum ? "in" : ""); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1015 | } |
| 1016 | } |
| 1017 | |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1018 | exit(EXIT_SUCCESS); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1019 | } |
| 1020 | #endif |
| 1021 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1022 | static smallint get_identity, get_geom; |
| 1023 | static smallint do_flush; |
| 1024 | static smallint do_ctimings, do_timings; |
| 1025 | static smallint reread_partn; |
| 1026 | |
| 1027 | static smallint set_piomode, noisy_piomode; |
| 1028 | static smallint set_readahead, get_readahead; |
| 1029 | static smallint set_readonly, get_readonly; |
| 1030 | static smallint set_unmask, get_unmask; |
| 1031 | static smallint set_mult, get_mult; |
| 1032 | static smallint set_dma_q, get_dma_q; |
| 1033 | static smallint set_nowerr, get_nowerr; |
| 1034 | static smallint set_keep, get_keep; |
| 1035 | static smallint set_io32bit, get_io32bit; |
"Vladimir N. Oleynik" | b4b6d26 | 2005-10-15 14:10:36 +0000 | [diff] [blame] | 1036 | static int piomode; |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1037 | static unsigned long Xreadahead; |
| 1038 | static unsigned long readonly; |
| 1039 | static unsigned long unmask; |
| 1040 | static unsigned long mult; |
| 1041 | static unsigned long dma_q; |
| 1042 | static unsigned long nowerr; |
| 1043 | static unsigned long keep; |
| 1044 | static unsigned long io32bit; |
| 1045 | #if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA |
| 1046 | static unsigned long dma; |
| 1047 | static smallint set_dma, get_dma; |
| 1048 | #endif |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1049 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1050 | static smallint set_xfermode, get_xfermode; |
| 1051 | static smallint set_dkeep, get_dkeep; |
| 1052 | static smallint set_standby, get_standby; |
| 1053 | static smallint set_lookahead, get_lookahead; |
| 1054 | static smallint set_prefetch, get_prefetch; |
| 1055 | static smallint set_defects, get_defects; |
| 1056 | static smallint set_wcache, get_wcache; |
| 1057 | static smallint set_doorlock, get_doorlock; |
| 1058 | static smallint set_seagate, get_seagate; |
| 1059 | static smallint set_standbynow, get_standbynow; |
| 1060 | static smallint set_sleepnow, get_sleepnow; |
| 1061 | static smallint get_powermode; |
| 1062 | static smallint set_apmmode, get_apmmode; |
"Vladimir N. Oleynik" | b4b6d26 | 2005-10-15 14:10:36 +0000 | [diff] [blame] | 1063 | static int xfermode_requested; |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1064 | static unsigned long dkeep; |
| 1065 | static unsigned long standby_requested; |
| 1066 | static unsigned long lookahead; |
| 1067 | static unsigned long prefetch; |
| 1068 | static unsigned long defects; |
| 1069 | static unsigned long wcache; |
| 1070 | static unsigned long doorlock; |
| 1071 | static unsigned long apmmode; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1072 | #endif |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1073 | USE_FEATURE_HDPARM_GET_IDENTITY( static smallint get_IDentity;) |
| 1074 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static smallint set_busstate, get_busstate;) |
| 1075 | USE_FEATURE_HDPARM_HDIO_DRIVE_RESET( static smallint perform_reset;) |
| 1076 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static smallint perform_tristate;) |
| 1077 | USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(static smallint unregister_hwif;) |
| 1078 | USE_FEATURE_HDPARM_HDIO_SCAN_HWIF( static smallint scan_hwif;) |
| 1079 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static unsigned long busstate;) |
| 1080 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF( static unsigned long tristate;) |
| 1081 | USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(static unsigned long hwif;) |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1082 | #if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1083 | static unsigned long hwif_data; |
| 1084 | static unsigned long hwif_ctrl; |
| 1085 | static unsigned long hwif_irq; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1086 | #endif |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1087 | |
| 1088 | // Historically, if there was no HDIO_OBSOLETE_IDENTITY, then |
| 1089 | // then the HDIO_GET_IDENTITY only returned 142 bytes. |
| 1090 | // Otherwise, HDIO_OBSOLETE_IDENTITY returns 142 bytes, |
| 1091 | // and HDIO_GET_IDENTITY returns 512 bytes. But the latest |
| 1092 | // 2.5.xx kernels no longer define HDIO_OBSOLETE_IDENTITY |
| 1093 | // (which they should, but they should just return -EINVAL). |
| 1094 | // |
| 1095 | // So.. we must now assume that HDIO_GET_IDENTITY returns 512 bytes. |
| 1096 | // On a really old system, it will not, and we will be confused. |
| 1097 | // Too bad, really. |
| 1098 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1099 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1100 | static const char *const cfg_str[] = { |
| 1101 | "", "HardSect", "SoftSect", "NotMFM", |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1102 | "HdSw>15uSec", "SpinMotCtl", "Fixed", "Removeable", |
| 1103 | "DTR<=5Mbs", "DTR>5Mbs", "DTR>10Mbs", "RotSpdTol>.5%", |
| 1104 | "dStbOff", "TrkOff", "FmtGapReq", "nonMagnetic" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1105 | }; |
| 1106 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1107 | static const char *const BuffType[] = { |
| 1108 | "Unknown", "1Sect", "DualPort", "DualPortCache" |
| 1109 | }; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1110 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1111 | static void dump_identity(const struct hd_driveid *id) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1112 | { |
| 1113 | int i; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1114 | const unsigned short int *id_regs = (const void*) id; |
Rob Landley | 0a7c8ef | 2006-02-22 17:01:00 +0000 | [diff] [blame] | 1115 | |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1116 | printf("\n Model=%.40s, FwRev=%.8s, SerialNo=%.20s\n Config={", |
| 1117 | id->model, id->fw_rev, id->serial_no); |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1118 | for (i = 0; i <= 15; i++) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1119 | if (id->config & (1<<i)) |
| 1120 | printf(" %s", cfg_str[i]); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1121 | } |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1122 | printf(" }\n RawCHS=%u/%u/%u, TrkSize=%u, SectSize=%u, ECCbytes=%u\n" |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1123 | " BuffType=(%u) %s, BuffSize=%ukB, MaxMultSect=%u", |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1124 | id->cyls, id->heads, id->sectors, id->track_bytes, |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1125 | id->sector_bytes, id->ecc_bytes, |
| 1126 | id->buf_type, BuffType[(id->buf_type > 3) ? 0 : id->buf_type], |
| 1127 | id->buf_size/2, id->max_multsect); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1128 | if (id->max_multsect) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1129 | printf(", MultSect="); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1130 | if (!(id->multsect_valid & 1)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1131 | printf("?%u?", id->multsect); |
| 1132 | else if (id->multsect) |
| 1133 | printf("%u", id->multsect); |
| 1134 | else |
| 1135 | printf("off"); |
| 1136 | } |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 1137 | puts(""); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1138 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1139 | if (!(id->field_valid & 1)) |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1140 | printf(" (maybe):"); |
| 1141 | |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1142 | printf(" CurCHS=%u/%u/%u, CurSects=%lu, LBA=%s", id->cur_cyls, id->cur_heads, |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1143 | id->cur_sectors, |
| 1144 | (BB_BIG_ENDIAN) ? |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1145 | (unsigned long)(id->cur_capacity0 << 16) | id->cur_capacity1 : |
| 1146 | (unsigned long)(id->cur_capacity1 << 16) | id->cur_capacity0, |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1147 | ((id->capability&2) == 0) ? "no" : "yes"); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1148 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1149 | if (id->capability & 2) |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1150 | printf(", LBAsects=%u", id->lba_capacity); |
| 1151 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1152 | printf("\n IORDY=%s", (id->capability & 8) ? (id->capability & 4) ? "on/off" : "yes" : "no"); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1153 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1154 | if (((id->capability & 8) || (id->field_valid & 2)) && (id->field_valid & 2)) |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1155 | printf(", tPIO={min:%u,w/IORDY:%u}", id->eide_pio, id->eide_pio_iordy); |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1156 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1157 | if ((id->capability & 1) && (id->field_valid & 2)) |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1158 | printf(", tDMA={min:%u,rec:%u}", id->eide_dma_min, id->eide_dma_time); |
| 1159 | |
| 1160 | printf("\n PIO modes: "); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1161 | if (id->tPIO <= 5) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1162 | printf("pio0 "); |
| 1163 | if (id->tPIO >= 1) printf("pio1 "); |
| 1164 | if (id->tPIO >= 2) printf("pio2 "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1165 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1166 | if (id->field_valid & 2) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1167 | if (id->eide_pio_modes & 1) printf("pio3 "); |
| 1168 | if (id->eide_pio_modes & 2) printf("pio4 "); |
| 1169 | if (id->eide_pio_modes &~3) printf("pio? "); |
| 1170 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1171 | if (id->capability & 1) { |
| 1172 | if (id->dma_1word | id->dma_mword) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1173 | printf("\n DMA modes: "); |
| 1174 | if (id->dma_1word & 0x100) printf("*"); |
| 1175 | if (id->dma_1word & 1) printf("sdma0 "); |
| 1176 | if (id->dma_1word & 0x200) printf("*"); |
| 1177 | if (id->dma_1word & 2) printf("sdma1 "); |
| 1178 | if (id->dma_1word & 0x400) printf("*"); |
| 1179 | if (id->dma_1word & 4) printf("sdma2 "); |
| 1180 | if (id->dma_1word & 0xf800) printf("*"); |
| 1181 | if (id->dma_1word & 0xf8) printf("sdma? "); |
| 1182 | if (id->dma_mword & 0x100) printf("*"); |
| 1183 | if (id->dma_mword & 1) printf("mdma0 "); |
| 1184 | if (id->dma_mword & 0x200) printf("*"); |
| 1185 | if (id->dma_mword & 2) printf("mdma1 "); |
| 1186 | if (id->dma_mword & 0x400) printf("*"); |
| 1187 | if (id->dma_mword & 4) printf("mdma2 "); |
| 1188 | if (id->dma_mword & 0xf800) printf("*"); |
| 1189 | if (id->dma_mword & 0xf8) printf("mdma? "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1190 | } |
| 1191 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1192 | if (((id->capability & 8) || (id->field_valid & 2)) && id->field_valid & 4) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1193 | printf("\n UDMA modes: "); |
| 1194 | if (id->dma_ultra & 0x100) printf("*"); |
| 1195 | if (id->dma_ultra & 0x001) printf("udma0 "); |
| 1196 | if (id->dma_ultra & 0x200) printf("*"); |
| 1197 | if (id->dma_ultra & 0x002) printf("udma1 "); |
| 1198 | if (id->dma_ultra & 0x400) printf("*"); |
| 1199 | if (id->dma_ultra & 0x004) printf("udma2 "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1200 | #ifdef __NEW_HD_DRIVE_ID |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1201 | if (id->hw_config & 0x2000) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1202 | #else /* !__NEW_HD_DRIVE_ID */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1203 | if (id->word93 & 0x2000) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1204 | #endif /* __NEW_HD_DRIVE_ID */ |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1205 | if (id->dma_ultra & 0x0800) printf("*"); |
| 1206 | if (id->dma_ultra & 0x0008) printf("udma3 "); |
| 1207 | if (id->dma_ultra & 0x1000) printf("*"); |
| 1208 | if (id->dma_ultra & 0x0010) printf("udma4 "); |
| 1209 | if (id->dma_ultra & 0x2000) printf("*"); |
| 1210 | if (id->dma_ultra & 0x0020) printf("udma5 "); |
| 1211 | if (id->dma_ultra & 0x4000) printf("*"); |
| 1212 | if (id->dma_ultra & 0x0040) printf("udma6 "); |
| 1213 | if (id->dma_ultra & 0x8000) printf("*"); |
| 1214 | if (id->dma_ultra & 0x0080) printf("udma7 "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1215 | } |
| 1216 | } |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1217 | printf("\n AdvancedPM=%s", (!(id_regs[83] & 8)) ? "no" : "yes"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1218 | if (id_regs[83] & 8) { |
| 1219 | if (!(id_regs[86] & 8)) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1220 | printf(": disabled (255)"); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1221 | else if ((id_regs[91] & 0xFF00) != 0x4000) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1222 | printf(": unknown setting"); |
| 1223 | else |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1224 | printf(": mode=0x%02X (%u)", id_regs[91] & 0xFF, id_regs[91] & 0xFF); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1225 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1226 | if (id_regs[82] & 0x20) |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1227 | printf(" WriteCache=%s", (id_regs[85] & 0x20) ? "enabled" : "disabled"); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1228 | #ifdef __NEW_HD_DRIVE_ID |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1229 | if ((id->minor_rev_num && id->minor_rev_num <= 31) |
| 1230 | || (id->major_rev_num && id->minor_rev_num <= 31) |
| 1231 | ) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1232 | printf("\n Drive conforms to: %s: ", (id->minor_rev_num <= 31) ? minor_str[id->minor_rev_num] : "Unknown"); |
Rob Landley | 026147a | 2006-04-17 22:29:13 +0000 | [diff] [blame] | 1233 | if (id->major_rev_num != 0x0000 && /* NOVAL_0 */ |
| 1234 | id->major_rev_num != 0xFFFF) { /* NOVAL_1 */ |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1235 | for (i = 0; i <= 15; i++) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1236 | if (id->major_rev_num & (1<<i)) |
| 1237 | printf(" ATA/ATAPI-%u", i); |
| 1238 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1239 | } |
| 1240 | } |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1241 | #endif /* __NEW_HD_DRIVE_ID */ |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1242 | printf("\n\n * current active mode\n\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1243 | } |
| 1244 | #endif |
| 1245 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1246 | static void flush_buffer_cache(int fd) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1247 | { |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1248 | fsync(fd); /* flush buffers */ |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1249 | ioctl_or_warn(fd, BLKFLSBUF, NULL); /* do it again, big time */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1250 | #ifdef HDIO_DRIVE_CMD |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1251 | sleep(1); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1252 | if (ioctl(fd, HDIO_DRIVE_CMD, NULL) && errno != EINVAL) { /* await completion */ |
| 1253 | if (ENABLE_IOCTL_HEX2STR_ERROR) /* To be coherent with ioctl_or_warn */ |
| 1254 | bb_perror_msg("HDIO_DRIVE_CMD"); |
| 1255 | else |
| 1256 | bb_perror_msg("ioctl %#x failed", HDIO_DRIVE_CMD); |
| 1257 | } |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1258 | #endif |
| 1259 | } |
| 1260 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1261 | static int seek_to_zero(int fd) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1262 | { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1263 | if (lseek(fd, (off_t) 0, SEEK_SET)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1264 | return 1; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1265 | return 0; |
| 1266 | } |
| 1267 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1268 | static int read_big_block(int fd, char *buf) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1269 | { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1270 | int i; |
| 1271 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1272 | i = read(fd, buf, TIMING_BUF_BYTES); |
| 1273 | if (i != TIMING_BUF_BYTES) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1274 | bb_error_msg("read(%d bytes) failed (rc=%d)", TIMING_BUF_BYTES, i); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1275 | return 1; |
| 1276 | } |
| 1277 | /* access all sectors of buf to ensure the read fully completed */ |
| 1278 | for (i = 0; i < TIMING_BUF_BYTES; i += 512) |
| 1279 | buf[i] &= 1; |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1283 | static int do_blkgetsize(int fd, unsigned long long *blksize64) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1284 | { |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1285 | int rc; |
| 1286 | unsigned blksize32 = 0; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1287 | |
| 1288 | if (0 == ioctl(fd, BLKGETSIZE64, blksize64)) { // returns bytes |
| 1289 | *blksize64 /= 512; |
| 1290 | return 0; |
| 1291 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1292 | rc = ioctl_or_warn(fd, BLKGETSIZE, &blksize32); // returns sectors |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1293 | *blksize64 = blksize32; |
| 1294 | return rc; |
| 1295 | } |
Eric Andersen | 50af12d | 2003-08-06 08:47:59 +0000 | [diff] [blame] | 1296 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1297 | static void print_timing(unsigned t, double e) |
| 1298 | { |
| 1299 | if (t >= e) /* more than 1MB/s */ |
| 1300 | printf("%4d MB in %.2f seconds = %.2f %cB/sec\n", t, e, t / e, 'M'); |
| 1301 | else |
| 1302 | printf("%4d MB in %.2f seconds = %.2f %cB/sec\n", t, e, t / e * 1024, 'k'); |
| 1303 | } |
| 1304 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1305 | static void do_time(int flag, int fd) |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1306 | /* flag = 0 time_cache, 1 time_device */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1307 | { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1308 | static const struct itimerval thousand = {{1000, 0}, {1000, 0}}; |
| 1309 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1310 | struct itimerval itv; |
| 1311 | unsigned elapsed, elapsed2; |
| 1312 | unsigned max_iterations, total_MB, iterations; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1313 | unsigned long long blksize; |
Rob Landley | 4ae2f51 | 2006-05-19 17:24:26 +0000 | [diff] [blame] | 1314 | RESERVE_CONFIG_BUFFER(buf, TIMING_BUF_BYTES); |
| 1315 | |
| 1316 | if (mlock(buf, TIMING_BUF_BYTES)) { |
| 1317 | bb_perror_msg("mlock"); |
| 1318 | goto quit2; |
| 1319 | } |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1320 | |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1321 | max_iterations = 1024; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1322 | if (0 == do_blkgetsize(fd, &blksize)) { |
| 1323 | max_iterations = blksize / (2 * 1024) / TIMING_BUF_MB; |
| 1324 | } |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1325 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1326 | /* Clear out the device request queues & give them time to complete */ |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1327 | sync(); |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1328 | sleep(2); |
| 1329 | if (flag == 0) { /* Time cache */ |
| 1330 | if (seek_to_zero(fd)) |
| 1331 | goto quit; |
| 1332 | if (read_big_block(fd, buf)) |
| 1333 | goto quit; |
| 1334 | printf(" Timing buffer-cache reads: "); |
| 1335 | } else { /* Time device */ |
| 1336 | printf(" Timing buffered disk reads: "); |
| 1337 | } |
| 1338 | fflush(stdout); |
| 1339 | iterations = 0; |
| 1340 | /* |
| 1341 | * getitimer() is used rather than gettimeofday() because |
| 1342 | * it is much more consistent (on my machine, at least). |
| 1343 | */ |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1344 | setitimer(ITIMER_REAL, &thousand, NULL); |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1345 | /* Now do the timing */ |
| 1346 | do { |
| 1347 | ++iterations; |
| 1348 | if ((flag == 0) && seek_to_zero(fd)) |
| 1349 | goto quit; |
| 1350 | if (read_big_block(fd, buf)) |
| 1351 | goto quit; |
| 1352 | getitimer(ITIMER_REAL, &itv); |
| 1353 | elapsed = (1000 - itv.it_value.tv_sec) * 1000000 |
| 1354 | - itv.it_value.tv_usec; |
| 1355 | } while (elapsed < 3000000 && iterations < max_iterations); |
| 1356 | total_MB = iterations * TIMING_BUF_MB; |
| 1357 | if (flag == 0) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1358 | /* Now remove the lseek() and getitimer() overheads from the elapsed time */ |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1359 | setitimer(ITIMER_REAL, &thousand, NULL); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1360 | do { |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1361 | if (seek_to_zero(fd)) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1362 | goto quit; |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1363 | getitimer(ITIMER_REAL, &itv); |
| 1364 | elapsed2 = (1000 - itv.it_value.tv_sec) * 1000000 |
| 1365 | - itv.it_value.tv_usec; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1366 | } while (--iterations); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1367 | elapsed -= elapsed2; |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1368 | total_MB *= BUFCACHE_FACTOR; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1369 | flush_buffer_cache(fd); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1370 | } |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1371 | print_timing(total_MB, elapsed / 1000000.0); |
| 1372 | quit: |
Rob Landley | 4ae2f51 | 2006-05-19 17:24:26 +0000 | [diff] [blame] | 1373 | munlock(buf, TIMING_BUF_BYTES); |
Denis Vlasenko | 6963eb5 | 2007-05-22 21:46:11 +0000 | [diff] [blame] | 1374 | quit2: |
Rob Landley | 4ae2f51 | 2006-05-19 17:24:26 +0000 | [diff] [blame] | 1375 | RELEASE_CONFIG_BUFFER(buf); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1378 | #if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1379 | static void bus_state_value(unsigned value) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1380 | { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1381 | if (value == BUSSTATE_ON) |
| 1382 | on_off(1); |
| 1383 | else if (value == BUSSTATE_OFF) |
| 1384 | on_off(0); |
| 1385 | else if (value == BUSSTATE_TRISTATE) |
| 1386 | printf(" (tristate)\n"); |
| 1387 | else |
| 1388 | printf(" (unknown: %d)\n", value); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1389 | } |
| 1390 | #endif |
| 1391 | |
| 1392 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1393 | static void interpret_standby(unsigned standby) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1394 | { |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1395 | unsigned t; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1396 | |
Rob Landley | 403777f | 2006-08-03 20:22:37 +0000 | [diff] [blame] | 1397 | printf(" ("); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1398 | if (standby == 0) |
| 1399 | printf("off"); |
| 1400 | else if (standby == 252) |
| 1401 | printf("21 minutes"); |
| 1402 | else if (standby == 253) |
| 1403 | printf("vendor-specific"); |
| 1404 | else if (standby == 254) |
| 1405 | printf("Reserved"); |
| 1406 | else if (standby == 255) |
| 1407 | printf("21 minutes + 15 seconds"); |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1408 | else if (standby <= 240) { |
| 1409 | t = standby * 5; |
| 1410 | printf("%u minutes + %u seconds", t / 60, t % 60); |
| 1411 | } else if (standby <= 251) { |
| 1412 | t = (standby - 240) * 30; |
| 1413 | printf("%u hours + %u minutes", t / 60, t % 60); |
| 1414 | } else |
| 1415 | printf("illegal value"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1416 | printf(")\n"); |
| 1417 | } |
| 1418 | |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1419 | static const uint8_t xfermode_val[] ALIGN1 = { |
| 1420 | 8, 9, 10, 11, 12, 13, 14, 15, |
| 1421 | 16, 17, 18, 19, 20, 21, 22, 23, |
| 1422 | 32, 33, 34, 35, 36, 37, 38, 39, |
| 1423 | 64, 65, 66, 67, 68, 69, 70, 71 |
| 1424 | }; |
| 1425 | /* NB: we save size by _not_ storing terninating NUL! */ |
| 1426 | static const char xfermode_name[][5] ALIGN1 = { |
| 1427 | "pio0", "pio1", "pio2", "pio3", "pio4", "pio5", "pio6", "pio7", |
| 1428 | "sdma0","sdma1","sdma2","sdma3","sdma4","sdma5","sdma6","sdma7", |
| 1429 | "mdma0","mdma1","mdma2","mdma3","mdma4","mdma5","mdma6","mdma7", |
| 1430 | "udma0","udma1","udma2","udma3","udma4","udma5","udma6","udma7" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1431 | }; |
| 1432 | |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1433 | static int translate_xfermode(const char *name) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1434 | { |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1435 | int val, i; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1436 | |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1437 | for (i = 0; i < ARRAY_SIZE(xfermode_val); i++) { |
| 1438 | if (!strncmp(name, xfermode_name[i], 5)) |
| 1439 | if (strlen(name) <= 5) |
| 1440 | return xfermode_val[i]; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1441 | } |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1442 | /* Negative numbers are invalid and are caught later */ |
| 1443 | val = bb_strtoi(name, NULL, 10); |
| 1444 | if (!errno) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1445 | return val; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1446 | return -1; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1447 | } |
| 1448 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1449 | static void interpret_xfermode(unsigned xfermode) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1450 | { |
| 1451 | printf(" ("); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1452 | if (xfermode == 0) |
| 1453 | printf("default PIO mode"); |
| 1454 | else if (xfermode == 1) |
| 1455 | printf("default PIO mode, disable IORDY"); |
| 1456 | else if (xfermode >= 8 && xfermode <= 15) |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1457 | printf("PIO flow control mode%u", xfermode - 8); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1458 | else if (xfermode >= 16 && xfermode <= 23) |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1459 | printf("singleword DMA mode%u", xfermode - 16); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1460 | else if (xfermode >= 32 && xfermode <= 39) |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1461 | printf("multiword DMA mode%u", xfermode - 32); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1462 | else if (xfermode >= 64 && xfermode <= 71) |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 1463 | printf("UltraDMA mode%u", xfermode - 64); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1464 | else |
| 1465 | printf("Unknown"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1466 | printf(")\n"); |
| 1467 | } |
| 1468 | #endif /* HDIO_DRIVE_CMD */ |
| 1469 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1470 | static void print_flag(int flag, const char *s, unsigned long value) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1471 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1472 | if (flag) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1473 | printf(" setting %s to %ld\n", s, value); |
| 1474 | } |
| 1475 | |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1476 | static void process_dev(char *devname) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1477 | { |
| 1478 | int fd; |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1479 | long parm, multcount; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1480 | #ifndef HDIO_DRIVE_CMD |
| 1481 | int force_operation = 0; |
| 1482 | #endif |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1483 | /* Please restore args[n] to these values after each ioctl |
| 1484 | except for args[2] */ |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1485 | unsigned char args[4] = { WIN_SETFEATURES, 0, 0, 0 }; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1486 | const char *fmt = " %s\t= %2ld"; |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1487 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1488 | fd = xopen(devname, O_RDONLY|O_NONBLOCK); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1489 | printf("\n%s:\n", devname); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1490 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1491 | if (set_readahead) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1492 | print_flag(get_readahead, "fs readahead", Xreadahead); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1493 | ioctl_or_warn(fd, BLKRASET, (int *)Xreadahead); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1494 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1495 | #if ENABLE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF |
| 1496 | if (unregister_hwif) { |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1497 | printf(" attempting to unregister hwif#%lu\n", hwif); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1498 | ioctl_or_warn(fd, HDIO_UNREGISTER_HWIF, (int *)(unsigned long)hwif); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1499 | } |
| 1500 | #endif |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1501 | #if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF |
| 1502 | if (scan_hwif) { |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1503 | printf(" attempting to scan hwif (0x%lx, 0x%lx, %lu)\n", hwif_data, hwif_ctrl, hwif_irq); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1504 | args[0] = hwif_data; |
| 1505 | args[1] = hwif_ctrl; |
| 1506 | args[2] = hwif_irq; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1507 | ioctl_or_warn(fd, HDIO_SCAN_HWIF, args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1508 | args[0] = WIN_SETFEATURES; |
| 1509 | args[1] = 0; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1510 | } |
| 1511 | #endif |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1512 | if (set_piomode) { |
| 1513 | if (noisy_piomode) { |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1514 | printf(" attempting to "); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1515 | if (piomode == 255) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1516 | printf("auto-tune PIO mode\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1517 | else if (piomode < 100) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1518 | printf("set PIO mode to %d\n", piomode); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1519 | else if (piomode < 200) |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1520 | printf("set MDMA mode to %d\n", (piomode-100)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1521 | else |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1522 | printf("set UDMA mode to %d\n", (piomode-200)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1523 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1524 | ioctl_or_warn(fd, HDIO_SET_PIO_MODE, (int *)(unsigned long)piomode); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1525 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1526 | if (set_io32bit) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1527 | print_flag(get_io32bit, "32-bit IO_support flag", io32bit); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1528 | ioctl_or_warn(fd, HDIO_SET_32BIT, (int *)io32bit); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1529 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1530 | if (set_mult) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1531 | print_flag(get_mult, "multcount", mult); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1532 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1533 | ioctl_or_warn(fd, HDIO_SET_MULTCOUNT, (void *)mult); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1534 | #else |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1535 | force_operation |= (!ioctl_or_warn(fd, HDIO_SET_MULTCOUNT, (void *)mult)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1536 | #endif |
| 1537 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1538 | if (set_readonly) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1539 | print_flag_on_off(get_readonly, "readonly", readonly); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1540 | ioctl_or_warn(fd, BLKROSET, &readonly); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1541 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1542 | if (set_unmask) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1543 | print_flag_on_off(get_unmask, "unmaskirq", unmask); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1544 | ioctl_or_warn(fd, HDIO_SET_UNMASKINTR, (int *)unmask); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1545 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1546 | #if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA |
| 1547 | if (set_dma) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1548 | print_flag_on_off(get_dma, "using_dma", dma); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1549 | ioctl_or_warn(fd, HDIO_SET_DMA, (int *)dma); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1550 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1551 | #endif /* FEATURE_HDPARM_HDIO_GETSET_DMA */ |
| 1552 | if (set_dma_q) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1553 | print_flag_on_off(get_dma_q, "DMA queue_depth", dma_q); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1554 | ioctl_or_warn(fd, HDIO_SET_QDMA, (int *)dma_q); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1555 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1556 | if (set_nowerr) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1557 | print_flag_on_off(get_nowerr, "nowerr", nowerr); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1558 | ioctl_or_warn(fd, HDIO_SET_NOWERR, (int *)nowerr); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1559 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1560 | if (set_keep) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1561 | print_flag_on_off(get_keep, "keep_settings", keep); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1562 | ioctl_or_warn(fd, HDIO_SET_KEEPSETTINGS, (int *)keep); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1563 | } |
| 1564 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1565 | if (set_doorlock) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1566 | args[0] = doorlock ? WIN_DOORLOCK : WIN_DOORUNLOCK; |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1567 | args[2] = 0; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1568 | print_flag_on_off(get_doorlock, "drive doorlock", doorlock); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1569 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1570 | args[0] = WIN_SETFEATURES; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1571 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1572 | if (set_dkeep) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1573 | /* lock/unlock the drive's "feature" settings */ |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1574 | print_flag_on_off(get_dkeep, "drive keep features", dkeep); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1575 | args[2] = dkeep ? 0x66 : 0xcc; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1576 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1577 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1578 | if (set_defects) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1579 | args[2] = defects ? 0x04 : 0x84; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1580 | print_flag(get_defects, "drive defect-mgmt", defects); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1581 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1582 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1583 | if (set_prefetch) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1584 | args[1] = prefetch; |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1585 | args[2] = 0xab; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1586 | print_flag(get_prefetch, "drive prefetch", prefetch); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1587 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1588 | args[1] = 0; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1589 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1590 | if (set_xfermode) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1591 | args[1] = xfermode_requested; |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1592 | args[2] = 3; |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1593 | if (get_xfermode) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1594 | print_flag(1, "xfermode", xfermode_requested); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1595 | interpret_xfermode(xfermode_requested); |
| 1596 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1597 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1598 | args[1] = 0; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1599 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1600 | if (set_lookahead) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1601 | args[2] = lookahead ? 0xaa : 0x55; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1602 | print_flag_on_off(get_lookahead, "drive read-lookahead", lookahead); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1603 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1604 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1605 | if (set_apmmode) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1606 | args[2] = (apmmode == 255) ? 0x85 /* disable */ : 0x05 /* set */; /* feature register */ |
| 1607 | args[1] = apmmode; /* sector count register 1-255 */ |
| 1608 | if (get_apmmode) |
| 1609 | printf(" setting APM level to %s 0x%02lX (%ld)\n", (apmmode == 255) ? "disabled" : "", apmmode, apmmode); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1610 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1611 | args[1] = 0; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1612 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1613 | if (set_wcache) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1614 | #ifdef DO_FLUSHCACHE |
| 1615 | #ifndef WIN_FLUSHCACHE |
| 1616 | #define WIN_FLUSHCACHE 0xe7 |
| 1617 | #endif |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1618 | static unsigned char flushcache[4] = { WIN_FLUSHCACHE, 0, 0, 0 }; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1619 | #endif /* DO_FLUSHCACHE */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1620 | args[2] = wcache ? 0x02 : 0x82; |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1621 | print_flag_on_off(get_wcache, "drive write-caching", wcache); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1622 | #ifdef DO_FLUSHCACHE |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1623 | if (!wcache) |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1624 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &flushcache); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1625 | #endif /* DO_FLUSHCACHE */ |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1626 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1627 | #ifdef DO_FLUSHCACHE |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1628 | if (!wcache) |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1629 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &flushcache); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1630 | #endif /* DO_FLUSHCACHE */ |
| 1631 | } |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1632 | |
| 1633 | /* In code below, we do not preserve args[0], but the rest |
| 1634 | is preserved, including args[2] */ |
| 1635 | args[2] = 0; |
| 1636 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1637 | if (set_standbynow) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1638 | #ifndef WIN_STANDBYNOW1 |
| 1639 | #define WIN_STANDBYNOW1 0xE0 |
| 1640 | #endif |
| 1641 | #ifndef WIN_STANDBYNOW2 |
| 1642 | #define WIN_STANDBYNOW2 0x94 |
| 1643 | #endif |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1644 | if (get_standbynow) printf(" issuing standby command\n"); |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1645 | args[0] = WIN_STANDBYNOW1; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1646 | ioctl_alt_or_warn(fd, HDIO_DRIVE_CMD, args, WIN_STANDBYNOW2); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1647 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1648 | if (set_sleepnow) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1649 | #ifndef WIN_SLEEPNOW1 |
| 1650 | #define WIN_SLEEPNOW1 0xE6 |
| 1651 | #endif |
| 1652 | #ifndef WIN_SLEEPNOW2 |
| 1653 | #define WIN_SLEEPNOW2 0x99 |
| 1654 | #endif |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1655 | if (get_sleepnow) printf(" issuing sleep command\n"); |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1656 | args[0] = WIN_SLEEPNOW1; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1657 | ioctl_alt_or_warn(fd, HDIO_DRIVE_CMD, args, WIN_SLEEPNOW2); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1658 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1659 | if (set_seagate) { |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1660 | args[0] = 0xfb; |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1661 | if (get_seagate) printf(" disabling Seagate auto powersaving mode\n"); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1662 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1663 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1664 | if (set_standby) { |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1665 | args[0] = WIN_SETIDLE1; |
| 1666 | args[1] = standby_requested; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1667 | if (get_standby) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1668 | print_flag(1, "standby", standby_requested); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1669 | interpret_standby(standby_requested); |
| 1670 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1671 | ioctl_or_warn(fd, HDIO_DRIVE_CMD, &args); |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1672 | args[1] = 0; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1673 | } |
| 1674 | #else /* HDIO_DRIVE_CMD */ |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1675 | if (force_operation) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1676 | char buf[512]; |
| 1677 | flush_buffer_cache(fd); |
| 1678 | if (-1 == read(fd, buf, sizeof(buf))) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1679 | bb_perror_msg("read(%d bytes) failed (rc=%d)", sizeof(buf), -1); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1680 | } |
| 1681 | #endif /* HDIO_DRIVE_CMD */ |
| 1682 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1683 | if (get_mult || get_identity) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1684 | multcount = -1; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1685 | if (ioctl(fd, HDIO_GET_MULTCOUNT, &multcount)) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1686 | if (get_mult && ENABLE_IOCTL_HEX2STR_ERROR) /* To be coherent with ioctl_or_warn. */ |
Eric Andersen | 06d4ec2 | 2004-03-19 10:53:52 +0000 | [diff] [blame] | 1687 | bb_perror_msg("HDIO_GET_MULTCOUNT"); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1688 | else |
| 1689 | bb_perror_msg("ioctl %#x failed", HDIO_GET_MULTCOUNT); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1690 | } else if (get_mult) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1691 | printf(fmt, "multcount", multcount); |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1692 | on_off(multcount != 0); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1693 | } |
| 1694 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1695 | if (get_io32bit) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1696 | if (!ioctl_or_warn(fd, HDIO_GET_32BIT, &parm)) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1697 | printf(" IO_support\t=%3ld (", parm); |
| 1698 | if (parm == 0) |
| 1699 | printf("default 16-bit)\n"); |
| 1700 | else if (parm == 2) |
| 1701 | printf("16-bit)\n"); |
| 1702 | else if (parm == 1) |
| 1703 | printf("32-bit)\n"); |
| 1704 | else if (parm == 3) |
| 1705 | printf("32-bit w/sync)\n"); |
| 1706 | else if (parm == 8) |
| 1707 | printf("Request-Queue-Bypass)\n"); |
| 1708 | else |
| 1709 | printf("\?\?\?)\n"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1710 | } |
| 1711 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1712 | if (get_unmask) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1713 | if(!ioctl_or_warn(fd, HDIO_GET_UNMASKINTR, (unsigned long *)parm)) |
| 1714 | print_value_on_off("unmaskirq", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1715 | } |
| 1716 | |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1717 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1718 | #if ENABLE_FEATURE_HDPARM_HDIO_GETSET_DMA |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1719 | if (get_dma) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1720 | if (!ioctl_or_warn(fd, HDIO_GET_DMA, &parm)) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1721 | printf(fmt, "using_dma", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1722 | if (parm == 8) |
| 1723 | printf(" (DMA-Assisted-PIO)\n"); |
| 1724 | else |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1725 | on_off(parm != 0); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1726 | } |
| 1727 | } |
| 1728 | #endif |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1729 | if (get_dma_q) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1730 | if(!ioctl_or_warn(fd, HDIO_GET_QDMA, (unsigned long *)parm)) |
| 1731 | print_value_on_off("queue_depth", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1732 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1733 | if (get_keep) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1734 | if(!ioctl_or_warn(fd, HDIO_GET_KEEPSETTINGS, (unsigned long *)parm)) |
| 1735 | print_value_on_off("keepsettings", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1738 | if (get_nowerr) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1739 | if(!ioctl_or_warn(fd, HDIO_GET_NOWERR, (unsigned long *)parm)) |
| 1740 | print_value_on_off("nowerr", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1741 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1742 | if (get_readonly) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1743 | if(!ioctl_or_warn(fd, BLKROGET, (unsigned long *)parm)) |
| 1744 | print_value_on_off("readonly", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1745 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1746 | if (get_readahead) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1747 | if(!ioctl_or_warn(fd, BLKRAGET, (unsigned long *)parm)) |
| 1748 | print_value_on_off("readahead", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1749 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1750 | if (get_geom) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1751 | if (!ioctl_or_warn(fd, BLKGETSIZE, &parm)) { |
Rob Landley | 2584e9b | 2006-05-03 20:00:00 +0000 | [diff] [blame] | 1752 | struct hd_geometry g; |
| 1753 | |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1754 | if (!ioctl_or_warn(fd, HDIO_GETGEO, &g)) |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1755 | printf(" geometry\t= %u/%u/%u, sectors = %ld, start = %ld\n", |
Rob Landley | 2584e9b | 2006-05-03 20:00:00 +0000 | [diff] [blame] | 1756 | g.cylinders, g.heads, g.sectors, parm, g.start); |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1757 | } |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1758 | } |
| 1759 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1760 | if (get_powermode) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1761 | #ifndef WIN_CHECKPOWERMODE1 |
| 1762 | #define WIN_CHECKPOWERMODE1 0xE5 |
| 1763 | #endif |
| 1764 | #ifndef WIN_CHECKPOWERMODE2 |
| 1765 | #define WIN_CHECKPOWERMODE2 0x98 |
| 1766 | #endif |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1767 | const char *state; |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1768 | |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1769 | args[0] = WIN_CHECKPOWERMODE1; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1770 | if (ioctl_alt_or_warn(fd, HDIO_DRIVE_CMD, args, WIN_CHECKPOWERMODE2)) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1771 | if (errno != EIO || args[0] != 0 || args[1] != 0) |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1772 | state = "unknown"; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1773 | else |
| 1774 | state = "sleeping"; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1775 | } else |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1776 | state = (args[2] == 255) ? "active/idle" : "standby"; |
Rob Landley | 39cf645 | 2006-05-05 16:52:28 +0000 | [diff] [blame] | 1777 | args[1] = args[2] = 0; |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1778 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1779 | printf(" drive state is: %s\n", state); |
| 1780 | } |
| 1781 | #endif |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1782 | #if ENABLE_FEATURE_HDPARM_HDIO_DRIVE_RESET |
| 1783 | if (perform_reset) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1784 | ioctl_or_warn(fd, HDIO_DRIVE_RESET, NULL); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1785 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1786 | #endif /* FEATURE_HDPARM_HDIO_DRIVE_RESET */ |
| 1787 | #if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
| 1788 | if (perform_tristate) { |
Rob Landley | e5b281f | 2006-04-29 15:49:18 +0000 | [diff] [blame] | 1789 | args[0] = 0; |
| 1790 | args[1] = tristate; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1791 | ioctl_or_warn(fd, HDIO_TRISTATE_HWIF, &args); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1792 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1793 | #endif /* FEATURE_HDPARM_HDIO_TRISTATE_HWIF */ |
| 1794 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
| 1795 | if (get_identity) { |
Denis Vlasenko | 7c282a2 | 2007-03-28 00:14:54 +0000 | [diff] [blame] | 1796 | struct hd_driveid id; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1797 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1798 | if (!ioctl(fd, HDIO_GET_IDENTITY, &id)) { |
| 1799 | if (multcount != -1) { |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1800 | id.multsect = multcount; |
| 1801 | id.multsect_valid |= 1; |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1802 | } else |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1803 | id.multsect_valid &= ~1; |
| 1804 | dump_identity(&id); |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1805 | } else if (errno == -ENOMSG) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1806 | printf(" no identification info available\n"); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1807 | else if (ENABLE_IOCTL_HEX2STR_ERROR) /* To be coherent with ioctl_or_warn */ |
Denis Vlasenko | 49a128a | 2007-07-17 21:42:59 +0000 | [diff] [blame] | 1808 | bb_perror_msg("HDIO_GET_IDENTITY"); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1809 | else |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1810 | bb_perror_msg("ioctl %#x failed", HDIO_GET_IDENTITY); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1811 | } |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1812 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1813 | if (get_IDentity) { |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1814 | unsigned char args1[4+512]; /* = { ... } will eat 0.5k of rodata! */ |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1815 | |
Rob Landley | 5f8b5ec | 2006-04-29 16:03:40 +0000 | [diff] [blame] | 1816 | memset(args1, 0, sizeof(args1)); |
| 1817 | args1[0] = WIN_IDENTIFY; |
| 1818 | args1[3] = 1; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1819 | if (!ioctl_alt_or_warn(fd, HDIO_DRIVE_CMD, args1, WIN_PIDENTIFY)) |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 1820 | identify((void *)(args1 + 4)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1821 | } |
| 1822 | #endif |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1823 | #if ENABLE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
| 1824 | if (set_busstate) { |
| 1825 | if (get_busstate) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1826 | print_flag(1, "bus state", busstate); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1827 | bus_state_value(busstate); |
| 1828 | } |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1829 | ioctl_or_warn(fd, HDIO_SET_BUSSTATE, (int *)(unsigned long)busstate); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1830 | } |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1831 | if (get_busstate) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1832 | if (!ioctl_or_warn(fd, HDIO_GET_BUSSTATE, &parm)) { |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1833 | printf(fmt, "bus state", parm); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1834 | bus_state_value(parm); |
| 1835 | } |
| 1836 | } |
| 1837 | #endif |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1838 | if (reread_partn) |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 1839 | ioctl_or_warn(fd, BLKRRPART, NULL); |
Glenn L McGrath | 0708585 | 2003-10-09 07:28:22 +0000 | [diff] [blame] | 1840 | |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1841 | if (do_ctimings) |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1842 | do_time(0, fd); /* time cache */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1843 | if (do_timings) |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1844 | do_time(1, fd); /* time device */ |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1845 | if (do_flush) |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1846 | flush_buffer_cache(fd); |
| 1847 | close(fd); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1848 | } |
| 1849 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1850 | #if ENABLE_FEATURE_HDPARM_GET_IDENTITY |
Rob Landley | a3e4f38 | 2006-04-29 16:06:31 +0000 | [diff] [blame] | 1851 | static int fromhex(unsigned char c) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1852 | { |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 1853 | if (isdigit(c)) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1854 | return (c - '0'); |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 1855 | if (c >= 'a' && c <= 'f') |
| 1856 | return (c - ('a' - 10)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1857 | bb_error_msg_and_die("bad char: '%c' 0x%02x", c, c); |
| 1858 | } |
| 1859 | |
Rob Landley | 0f0b645 | 2006-05-03 18:28:06 +0000 | [diff] [blame] | 1860 | static void identify_from_stdin(void) |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1861 | { |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 1862 | uint16_t sbuf[256]; |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 1863 | unsigned char buf[1280]; |
| 1864 | unsigned char *b = (unsigned char *)buf; |
| 1865 | int i; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1866 | |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 1867 | xread(0, buf, 1280); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1868 | |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 1869 | // Convert the newline-separated hex data into an identify block. |
| 1870 | |
Denis Vlasenko | 3bf0020 | 2007-02-18 13:36:04 +0000 | [diff] [blame] | 1871 | for (i = 0; i < 256; i++) { |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 1872 | int j; |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 1873 | for (j = 0; j < 4; j++) |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 1874 | sbuf[i] = (sbuf[i] << 4) + fromhex(*(b++)); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1875 | } |
Rob Landley | 0753f4a | 2006-06-07 00:27:25 +0000 | [diff] [blame] | 1876 | |
| 1877 | // Parse the data. |
| 1878 | |
Rob Landley | 6389ff1 | 2006-05-01 19:28:53 +0000 | [diff] [blame] | 1879 | identify(sbuf); |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 1880 | } |
| 1881 | #endif |
| 1882 | |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1883 | /* busybox specific stuff */ |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1884 | static void parse_opts(smallint *get, smallint *set, unsigned long *value, int min, int max) |
Eric Andersen | b2aa776 | 2004-04-05 13:08:08 +0000 | [diff] [blame] | 1885 | { |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 1886 | if (get) { |
| 1887 | *get = 1; |
| 1888 | } |
| 1889 | if (optarg) { |
| 1890 | *set = 1; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 1891 | *value = xatol_range(optarg, min, max); |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 1892 | } |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1893 | } |
| 1894 | |
Denis Vlasenko | 0eec4ab | 2007-03-28 01:00:45 +0000 | [diff] [blame] | 1895 | static void parse_xfermode(int flag, smallint *get, smallint *set, int *value) |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1896 | { |
| 1897 | if (flag) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1898 | *get = 1; |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1899 | if (optarg) { |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1900 | *value = translate_xfermode(optarg); |
| 1901 | *set = (*value > -1); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1902 | } |
| 1903 | } |
| 1904 | } |
| 1905 | |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 1906 | /*------- getopt short options --------*/ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1907 | static const char hdparm_options[] ALIGN1 = |
| 1908 | "gfu::n::p:r::m::c::k::a::B:tTh" |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 1909 | USE_FEATURE_HDPARM_GET_IDENTITY("iI") |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1910 | USE_FEATURE_HDPARM_HDIO_GETSET_DMA("d::") |
| 1911 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1912 | "S:D:P:X:K:A:L:W:CyYzZ" |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1913 | #endif |
| 1914 | USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF("U:") |
| 1915 | #ifdef HDIO_GET_QDMA |
| 1916 | #ifdef HDIO_SET_QDMA |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1917 | "Q:" |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1918 | #else |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1919 | "Q" |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1920 | #endif |
| 1921 | #endif |
| 1922 | USE_FEATURE_HDPARM_HDIO_DRIVE_RESET("w") |
| 1923 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF("x::b:") |
| 1924 | USE_FEATURE_HDPARM_HDIO_SCAN_HWIF("R:"); |
| 1925 | /*-------------------------------------*/ |
| 1926 | |
| 1927 | /* our main() routine: */ |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 1928 | int hdparm_main(int argc, char **argv); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1929 | int hdparm_main(int argc, char **argv) |
| 1930 | { |
| 1931 | int c; |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1932 | int flagcount = 0; |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1933 | |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 1934 | while ((c = getopt(argc, argv, hdparm_options)) >= 0) { |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1935 | flagcount++; |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 1936 | if (c == 'h') bb_show_usage(); /* EXIT */ |
Mike Frysinger | ea93f8a | 2006-06-07 14:25:22 +0000 | [diff] [blame] | 1937 | USE_FEATURE_HDPARM_GET_IDENTITY(get_IDentity |= (c == 'I')); |
| 1938 | USE_FEATURE_HDPARM_GET_IDENTITY(get_identity |= (c == 'i')); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1939 | get_geom |= (c == 'g'); |
| 1940 | do_flush |= (c == 'f'); |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1941 | if (c == 'u') parse_opts(&get_unmask, &set_unmask, &unmask, 0, 1); |
| 1942 | USE_FEATURE_HDPARM_HDIO_GETSET_DMA(if (c == 'd') parse_opts(&get_dma, &set_dma, &dma, 0, 9)); |
| 1943 | if (c == 'n') parse_opts(&get_nowerr, &set_nowerr, &nowerr, 0, 1); |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1944 | parse_xfermode((c == 'p'), &noisy_piomode, &set_piomode, &piomode); |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1945 | if (c == 'r') parse_opts(&get_readonly, &set_readonly, &readonly, 0, 1); |
| 1946 | if (c == 'm') parse_opts(&get_mult, &set_mult, &mult, 0, INT_MAX /*32*/); |
| 1947 | if (c == 'c') parse_opts(&get_io32bit, &set_io32bit, &io32bit, 0, INT_MAX /*8*/); |
| 1948 | if (c == 'k') parse_opts(&get_keep, &set_keep, &keep, 0, 1); |
| 1949 | if (c == 'a') parse_opts(&get_readahead, &set_readahead, &Xreadahead, 0, INT_MAX); |
| 1950 | if (c == 'B') parse_opts(&get_apmmode, &set_apmmode, &apmmode, 1, 255); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1951 | do_flush |= do_timings |= (c == 't'); |
| 1952 | do_flush |= do_ctimings |= (c == 'T'); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1953 | #ifdef HDIO_DRIVE_CMD |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1954 | if (c == 'S') parse_opts(&get_standby, &set_standby, &standby_requested, 0, INT_MAX); |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1955 | if (c == 'D') parse_opts(&get_defects, &set_defects, &defects, 0, INT_MAX); |
| 1956 | if (c == 'P') parse_opts(&get_prefetch, &set_prefetch, &prefetch, 0, INT_MAX); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1957 | parse_xfermode((c == 'X'), &get_xfermode, &set_xfermode, &xfermode_requested); |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1958 | if (c == 'K') parse_opts(&get_dkeep, &set_dkeep, &prefetch, 0, 1); |
| 1959 | if (c == 'A') parse_opts(&get_lookahead, &set_lookahead, &lookahead, 0, 1); |
| 1960 | if (c == 'L') parse_opts(&get_doorlock, &set_doorlock, &doorlock, 0, 1); |
| 1961 | if (c == 'W') parse_opts(&get_wcache, &set_wcache, &wcache, 0, 1); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1962 | get_powermode |= (c == 'C'); |
| 1963 | get_standbynow = set_standbynow |= (c == 'y'); |
| 1964 | get_sleepnow = set_sleepnow |= (c == 'Y'); |
Rob Landley | adde798 | 2006-05-16 15:32:30 +0000 | [diff] [blame] | 1965 | reread_partn |= (c == 'z'); |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1966 | get_seagate = set_seagate |= (c == 'Z'); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1967 | #endif |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1968 | USE_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF(if (c == 'U') parse_opts(NULL, &unregister_hwif, &hwif, 0, INT_MAX)); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1969 | #ifdef HDIO_GET_QDMA |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1970 | if (c == 'Q') { |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1971 | #ifdef HDIO_SET_QDMA |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1972 | parse_opts(&get_dma_q, &set_dma_q, &dma_q, 0, INT_MAX); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1973 | #else |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1974 | parse_opts(&get_dma_q, NULL, NULL, 0, 0); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1975 | #endif |
Rob Landley | 1980256 | 2006-05-08 15:35:46 +0000 | [diff] [blame] | 1976 | } |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1977 | #endif |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1978 | USE_FEATURE_HDPARM_HDIO_DRIVE_RESET(perform_reset = (c == 'r')); |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1979 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF(if (c == 'x') parse_opts(NULL, &perform_tristate, &tristate, 0, 1)); |
| 1980 | USE_FEATURE_HDPARM_HDIO_TRISTATE_HWIF(if (c == 'b') parse_opts(&get_busstate, &set_busstate, &busstate, 0, 2)); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1981 | #if ENABLE_FEATURE_HDPARM_HDIO_SCAN_HWIF |
| 1982 | if (c == 'R') { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1983 | parse_opts(NULL, &scan_hwif, &hwif_data, 0, INT_MAX); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 1984 | hwif_ctrl = xatoi_u((argv[optind]) ? argv[optind] : ""); |
| 1985 | hwif_irq = xatoi_u((argv[optind+1]) ? argv[optind+1] : ""); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1986 | /* Move past the 2 additional arguments */ |
| 1987 | argv += 2; |
| 1988 | argc -= 2; |
| 1989 | } |
| 1990 | #endif |
| 1991 | } |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1992 | /* When no flags are given (flagcount = 0), -acdgkmnru is assumed. */ |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1993 | if (!flagcount) { |
Rob Landley | ade7f95 | 2006-05-25 18:53:06 +0000 | [diff] [blame] | 1994 | get_mult = get_io32bit = get_unmask = get_keep = get_readonly = get_readahead = get_geom = 1; |
| 1995 | USE_FEATURE_HDPARM_HDIO_GETSET_DMA(get_dma = 1); |
| 1996 | } |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 1997 | argv += optind; |
| 1998 | |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 1999 | if (!*argv) { |
Rob Landley | 6d8ce17 | 2006-06-07 21:22:42 +0000 | [diff] [blame] | 2000 | if (ENABLE_FEATURE_HDPARM_GET_IDENTITY && !isatty(STDIN_FILENO)) |
| 2001 | identify_from_stdin(); /* EXIT */ |
| 2002 | else bb_show_usage(); |
Rob Landley | 20deab0 | 2006-05-07 23:34:15 +0000 | [diff] [blame] | 2003 | } |
| 2004 | |
Denis Vlasenko | f1ba749 | 2007-03-28 00:14:01 +0000 | [diff] [blame] | 2005 | do { |
| 2006 | process_dev(*argv++); |
| 2007 | } while (*argv); |
| 2008 | |
| 2009 | return EXIT_SUCCESS; |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 2010 | } |