1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
|
/* $OpenBSD: atactl.c,v 1.7 2001/06/04 14:59:47 mickey Exp $ */
/* $NetBSD: atactl.c,v 1.4 1999/02/24 18:49:14 jwise Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ken Hornstein.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* atactl(8) - a program to control ATA devices.
*/
#include <sys/param.h>
#include <sys/ioctl.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <util.h>
#include <dev/ata/atareg.h>
#include <dev/ic/wdcreg.h>
#include <sys/ataio.h>
struct command {
const char *cmd_name;
void (*cmd_func) __P((int, char *[]));
};
struct bitinfo {
u_int bitmask;
const char *string;
};
int main __P((int, char *[]));
void usage __P((void));
void ata_command __P((struct atareq *));
void print_bitinfo __P((const char *, u_int, struct bitinfo *));
int fd; /* file descriptor for device */
const char *dvname; /* device name */
char dvname_store[MAXPATHLEN]; /* for opendisk(3) */
const char *cmdname; /* command user issued */
extern const char *__progname; /* from crt0.o */
void device_identify __P((int, char *[]));
void device_setidle __P((int, char *[]));
void device_idle __P((int, char *[]));
void device_checkpower __P((int, char *[]));
void device_acoustic __P((int, char *[]));
void device_apm __P((int, char *[]));
void device_feature __P((int, char *[]));
void device_smart __P((int, char *[]));
struct command commands[] = {
{ "identify", device_identify },
{ "setidle", device_setidle },
{ "setstandby", device_setidle },
{ "idle", device_idle },
{ "standby", device_idle },
{ "sleep", device_idle },
{ "checkpower", device_checkpower },
{ "acousticdisable", device_feature },
{ "acousticset", device_acoustic },
{ "apmdisable", device_feature },
{ "apmset", device_apm },
{ "poddisable", device_feature },
{ "podenable", device_feature },
{ "puisdisable", device_feature },
{ "puisenable", device_feature },
{ "puisspinup", device_feature },
{ "readaheaddisable", device_feature },
{ "readaheadenable", device_feature },
{ "smartenable", device_smart },
{ "smartdisable", device_smart },
{ "smartstatus", device_smart },
{ "writecachedisable", device_feature },
{ "writecacheenable", device_feature },
{ NULL, NULL },
};
/*
* Tables containing bitmasks used for error reporting and
* device identification.
*/
struct bitinfo ata_caps[] = {
{ ATA_CAP_STBY, "ATA standby timer values" },
{ WDC_CAP_IORDY, "IORDY operation" },
{ WDC_CAP_IORDY_DSBL, "IORDY disabling" },
{ NULL, NULL },
};
struct bitinfo ata_vers[] = {
{ WDC_VER_ATA1, "ATA-1" },
{ WDC_VER_ATA2, "ATA-2" },
{ WDC_VER_ATA3, "ATA-3" },
{ WDC_VER_ATA4, "ATA-4" },
{ WDC_VER_ATA5, "ATA-5" },
{ WDC_VER_ATA6, "ATA-6" },
{ WDC_VER_ATA7, "ATA-7" },
{ WDC_VER_ATA8, "ATA-8" },
{ WDC_VER_ATA9, "ATA-9" },
{ WDC_VER_ATA10, "ATA-10" },
{ WDC_VER_ATA11, "ATA-11" },
{ WDC_VER_ATA12, "ATA-12" },
{ WDC_VER_ATA13, "ATA-13" },
{ WDC_VER_ATA14, "ATA-14" },
{ NULL, NULL },
};
struct bitinfo ata_cmd_set1[] = {
{ WDC_CMD1_NOP, "NOP command" },
{ WDC_CMD1_RB, "READ BUFFER command" },
{ WDC_CMD1_WB, "WRITE BUFFER command" },
{ WDC_CMD1_HPA, "Host Protected Area feature set" },
{ WDC_CMD1_DVRST, "DEVICE RESET command" },
{ WDC_CMD1_SRV, "SERVICE interrupt" },
{ WDC_CMD1_RLSE, "release interrupt" },
{ WDC_CMD1_AHEAD, "read look-ahead" },
{ WDC_CMD1_CACHE, "write cache" },
{ WDC_CMD1_PKT, "PACKET command feature set" },
{ WDC_CMD1_PM, "Power Management feature set" },
{ WDC_CMD1_REMOV, "Removable Media feature set" },
{ WDC_CMD1_SEC, "Security Mode feature set" },
{ WDC_CMD1_SMART, "SMART feature set" },
{ NULL, NULL },
};
struct bitinfo ata_cmd_set2[] = {
{ ATAPI_CMD2_FCE, "Flush Cache Ext command" },
{ ATAPI_CMD2_FC, "Flush Cache command" },
{ ATAPI_CMD2_DCO, "Device Configuration Overlay feature set" },
{ ATAPI_CMD2_48AD, "48bit address feature set" },
{ ATAPI_CMD2_AAM, "Automatic Acoustic Management feature set" },
{ ATAPI_CMD2_SM, "Set Max security extension commands" },
{ ATAPI_CMD2_SF, "Set Features subcommand required" },
{ ATAPI_CMD2_PUIS, "Power-up in standby feature set" },
{ WDC_CMD2_RMSN, "Removable Media Status Notification feature set" },
{ ATA_CMD2_APM, "Advanced Power Management feature set" },
{ ATA_CMD2_CFA, "CFA feature set" },
{ ATA_CMD2_RWQ, "READ/WRITE DMA QUEUED commands" },
{ WDC_CMD2_DM, "DOWNLOAD MICROCODE command" },
{ NULL, NULL },
};
struct bitinfo ata_cmd_ext[] = {
{ ATAPI_CMDE_MSER, "Media serial number" },
{ ATAPI_CMDE_TEST, "SMART self-test" },
{ ATAPI_CMDE_SLOG, "SMART error logging" },
{ NULL, NULL },
};
int
main(argc, argv)
int argc;
char *argv[];
{
int i;
dvname = argv[1];
if (argc == 2) {
cmdname = "identify";
argv += 2;
argc -= 2;
} else if (argc < 3) {
usage();
} else {
/* Skip program name, get and skip device name and command. */
cmdname = argv[2];
argv += 3;
argc -= 3;
}
/*
* Open the device
*/
fd = opendisk(dvname, O_RDWR, dvname_store, sizeof(dvname_store), 0);
if (fd == -1) {
if (errno == ENOENT) {
/*
* Device doesn't exist. Probably trying to open
* a device which doesn't use disk semantics for
* device name. Try again, specifying "cooked",
* which leaves off the "r" in front of the device's
* name.
*/
fd = opendisk(dvname, O_RDWR, dvname_store,
sizeof(dvname_store), 1);
if (fd == -1)
err(1, "%s", dvname);
} else
err(1, "%s", dvname);
}
/*
* Point the dvname at the actual device name that opendisk() opened.
*/
dvname = dvname_store;
/* Look up and call the command. */
for (i = 0; commands[i].cmd_name != NULL; i++)
if (strcmp(cmdname, commands[i].cmd_name) == 0)
break;
if (commands[i].cmd_name == NULL)
errx(1, "unknown command: %s\n", cmdname);
(*commands[i].cmd_func)(argc, argv);
return (0);
}
void
usage()
{
fprintf(stderr, "usage: %s device command [arg [...]]\n",
__progname);
exit(1);
}
/*
* Wrapper that calls ATAIOCCOMMAND and checks for errors
*/
void
ata_command(req)
struct atareq *req;
{
int error;
error = ioctl(fd, ATAIOCCOMMAND, req);
if (error == -1)
err(1, "ATAIOCCOMMAND failed");
switch (req->retsts) {
case ATACMD_OK:
return;
case ATACMD_TIMEOUT:
fprintf(stderr, "ATA command timed out\n");
exit(1);
case ATACMD_DF:
fprintf(stderr, "ATA device returned a Device Fault\n");
exit(1);
case ATACMD_ERROR:
if (req->error & WDCE_ABRT)
fprintf(stderr, "ATA device returned Aborted "
"Command\n");
else
fprintf(stderr, "ATA device returned error register "
"%0x\n", req->error);
exit(1);
default:
fprintf(stderr, "ATAIOCCOMMAND returned unknown result code "
"%d\n", req->retsts);
exit(1);
}
}
/*
* Print out strings associated with particular bitmasks
*/
void
print_bitinfo(f, bits, binfo)
const char *f;
u_int bits;
struct bitinfo *binfo;
{
for (; binfo->bitmask != NULL; binfo++)
if (bits & binfo->bitmask)
printf(f, binfo->string);
}
/*
* DEVICE COMMANDS
*/
/*
* device_identify:
*
* Display the identity of the device
*/
void
device_identify(argc, argv)
int argc;
char *argv[];
{
struct ataparams *inqbuf;
struct atareq req;
unsigned char inbuf[DEV_BSIZE];
#if BYTE_ORDER == LITTLE_ENDIAN
int i;
u_int16_t *p;
#endif
/* No arguments. */
if (argc != 0)
goto usage;
memset(&inbuf, 0, sizeof(inbuf));
memset(&req, 0, sizeof(req));
inqbuf = (struct ataparams *) inbuf;
req.flags = ATACMD_READ;
req.command = WDCC_IDENTIFY;
req.databuf = (caddr_t) inbuf;
req.datalen = sizeof(inbuf);
req.timeout = 1000;
ata_command(&req);
#if BYTE_ORDER == LITTLE_ENDIAN
/*
* On little endian machines, we need to shuffle the string
* byte order. However, we don't have to do this for NEC or
* Mitsumi ATAPI devices
*/
if (!((inqbuf->atap_config & WDC_CFG_ATAPI_MASK) == WDC_CFG_ATAPI &&
((inqbuf->atap_model[0] == 'N' &&
inqbuf->atap_model[1] == 'E') ||
(inqbuf->atap_model[0] == 'F' &&
inqbuf->atap_model[1] == 'X')))) {
for (i = 0 ; i < sizeof(inqbuf->atap_model); i += 2) {
p = (u_short *) (inqbuf->atap_model + i);
*p = ntohs(*p);
}
for (i = 0 ; i < sizeof(inqbuf->atap_serial); i += 2) {
p = (u_short *) (inqbuf->atap_serial + i);
*p = ntohs(*p);
}
for (i = 0 ; i < sizeof(inqbuf->atap_revision); i += 2) {
p = (u_short *) (inqbuf->atap_revision + i);
*p = ntohs(*p);
}
}
#endif
/*
* Strip blanks off of the info strings. Yuck, I wish this was
* cleaner.
*/
if (inqbuf->atap_model[sizeof(inqbuf->atap_model) - 1] == ' ') {
inqbuf->atap_model[sizeof(inqbuf->atap_model) - 1] = '\0';
while (inqbuf->atap_model[strlen(inqbuf->atap_model) - 1] == ' ')
inqbuf->atap_model[strlen(inqbuf->atap_model) - 1] = '\0';
}
if (inqbuf->atap_revision[sizeof(inqbuf->atap_revision) - 1] == ' ') {
inqbuf->atap_revision[sizeof(inqbuf->atap_revision) - 1] = '\0';
while (inqbuf->atap_revision[strlen(inqbuf->atap_revision) - 1] == ' ')
inqbuf->atap_revision[strlen(inqbuf->atap_revision) - 1] = '\0';
}
if (inqbuf->atap_serial[sizeof(inqbuf->atap_serial) - 1] == ' ') {
inqbuf->atap_serial[sizeof(inqbuf->atap_serial) - 1] = '\0';
while (inqbuf->atap_serial[strlen(inqbuf->atap_serial) - 1] == ' ')
inqbuf->atap_serial[strlen(inqbuf->atap_serial) - 1] = '\0';
}
printf("Model: %.*s, Rev: %.*s, Serial #: %.*s\n",
(int) sizeof(inqbuf->atap_model), inqbuf->atap_model,
(int) sizeof(inqbuf->atap_revision), inqbuf->atap_revision,
(int) sizeof(inqbuf->atap_serial), inqbuf->atap_serial);
printf("Device type: %s, %s\n", inqbuf->atap_config & WDC_CFG_ATAPI ?
"ATAPI" : "ATA", inqbuf->atap_config & ATA_CFG_FIXED ? "fixed" :
"removable");
if ((inqbuf->atap_config & WDC_CFG_ATAPI_MASK) == 0)
printf("Cylinders: %d, heads: %d, sec/track: %d, total "
"sectors: %d\n", inqbuf->atap_cylinders,
inqbuf->atap_heads, inqbuf->atap_sectors,
(inqbuf->atap_capacity[1] << 16) |
inqbuf->atap_capacity[0]);
if (inqbuf->atap_queuedepth & WDC_QUEUE_DEPTH_MASK)
printf("Device supports command queue depth of %d\n",
inqbuf->atap_queuedepth & 0xf);
printf("Device capabilities:\n");
print_bitinfo("\t%s\n", inqbuf->atap_capabilities1, ata_caps);
if (inqbuf->atap_ata_major != 0 && inqbuf->atap_ata_major != 0xffff) {
printf("Device supports following standards:\n");
print_bitinfo("%s ", inqbuf->atap_ata_major, ata_vers);
printf("\n");
}
if (inqbuf->atap_cmd_set1 != 0 && inqbuf->atap_cmd_set1 != 0xffff &&
inqbuf->atap_cmd_set2 != 0 && inqbuf->atap_cmd_set2 != 0xffff) {
printf("Device supports the following command sets:\n");
print_bitinfo("\t%s\n", inqbuf->atap_cmd_set1, ata_cmd_set1);
print_bitinfo("\t%s\n", inqbuf->atap_cmd_set2, ata_cmd_set2);
print_bitinfo("\t%s\n", inqbuf->atap_cmd_ext, ata_cmd_ext);
}
if (inqbuf->atap_cmd_def != 0 && inqbuf->atap_cmd_def != 0xffff) {
printf("Device has enabled the following command sets/features:\n");
print_bitinfo("\t%s\n", inqbuf->atap_cmd1_en, ata_cmd_set1);
print_bitinfo("\t%s\n", inqbuf->atap_cmd2_en, ata_cmd_set2);
#if 0
print_bitinfo("\t%s\n", inqbuf->atap_cmd_set1 &
(WDC_CMD1_SRV | WDC_CMD1_RLSE | WDC_CMD1_AHEAD |
WDC_CMD1_CACHE | WDC_CMD1_SEC | WDC_CMD1_SMART),
ata_cmd_set1);
print_bitinfo("\t%s\n", inqbuf->atap_cmd_set2 &
(WDC_CMD2_RMSN | ATA_CMD2_APM | ATAPI_CMD2_PUIS |
ATAPI_CMD2_AAM | ATAPI_CMD2_48AD |
ATAPI_CMD2_DCO), ata_cmd_set2);
#endif
}
return;
usage:
fprintf(stderr, "usage: %s device %s\n", __progname, cmdname);
exit(1);
}
/*
* device idle:
*
* issue the IDLE IMMEDIATE command to the drive
*/
void
device_idle(argc, argv)
int argc;
char *argv[];
{
struct atareq req;
/* No arguments. */
if (argc != 0)
goto usage;
memset(&req, 0, sizeof(req));
if (strcmp(cmdname, "idle") == 0)
req.command = WDCC_IDLE_IMMED;
else if (strcmp(cmdname, "standby") == 0)
req.command = WDCC_STANDBY_IMMED;
else
req.command = WDCC_SLEEP;
req.timeout = 1000;
ata_command(&req);
return;
usage:
fprintf(stderr, "usage: %s device %s\n", __progname, cmdname);
exit(1);
}
/*
* SMART.
*
* issue the SMART ENABLE/DISABLE/STATUS commands to the drive
*/
void
device_smart(argc, argv)
int argc;
char *argv[];
{
struct atareq req;
/* No arguments. */
if (argc != 0)
goto usage;
memset(&req, 0, sizeof(req));
req.command = ATAPI_SMART;
req.cylinder = 0xC24F; /* Cylinders is mapped to LBA Mid/Low */
/* XXX: I assume cylinders is correctly mapped w.r.t.
* endianness? */
if (strcmp(cmdname, "smartenable") == 0)
req.features = ATAPI_SMART_EN;
else if (strcmp(cmdname, "smartdisable") == 0)
req.features = ATAPI_SMART_DS;
else if (strcmp(cmdname, "smartstatus") == 0)
req.features = ATAPI_SMART_STATUS;
else
goto usage;
req.timeout = 1000;
ata_command(&req);
if (strcmp(cmdname, "smartstatus") == 0) {
if (req.cylinder == 0xC24F)
printf("No SMART threshold exceeded\n");
else if (req.cylinder == 0x2CF4) {
fprintf(stderr,"SMART threshold exceeded!\n");
exit(2);
} else {
fprintf(stderr, "Unknown response %0.2x!\n",
req.cylinder);
exit(1);
}
}
return;
usage:
fprintf(stderr, "usage: %s device %s\n", __progname, cmdname);
exit(1);
}
/*
* Set the automatic acoustic managmement on the disk.
*/
void
device_acoustic(argc, argv)
int argc;
char *argv[];
{
unsigned long acoustic;
struct atareq req;
char *end;
/* Only one argument */
if (argc != 1)
goto usage;
acoustic = strtoul(argv[0], &end, 0);
if (*end != '\0') {
fprintf(stderr, "Invalid acoustic management value: \"%s\""
"(valid values range from 0 to 126)\n", argv[0]);
exit(1);
}
if (acoustic > 126) {
fprintf(stderr, "Automatic acoustic management has a "
"maximum value of 126\n");
exit(1);
}
memset(&req, 0, sizeof(req));
req.sec_count = acoustic + 0x80;
req.command = SET_FEATURES ;
req.features = WDSF_AAM_EN ;
req.timeout = 1000;
ata_command(&req);
return;
usage:
fprintf(stderr, "usage; %s device %s acoustic-management-value\n",
__progname, cmdname);
exit(1);
}
/*
* Set the advanced power managmement on the disk. Power management
* levels are translated from user-range 0-253 to ATAPI levels 1-0xFD
* to keep a uniform interface to the user.
*/
void
device_apm(argc, argv)
int argc;
char *argv[];
{
unsigned long power;
struct atareq req;
char *end;
/* Only one argument */
if (argc != 1)
goto usage;
power = strtoul(argv[0], &end, 0);
if (*end != '\0') {
fprintf(stderr, "Invalid advanced power management value: "
"\"%s\" (valid values range from 0 to 253)\n",
argv[0]);
exit(1);
}
if (power > 253) {
fprintf(stderr, "Advanced power management has a "
"maximum value of 253\n");
exit(1);
}
memset(&req, 0, sizeof(req));
req.sec_count = power + 0x01;
req.command = SET_FEATURES ;
req.features = WDSF_APM_EN ;
req.timeout = 1000;
ata_command(&req);
return;
usage:
fprintf(stderr, "usage; %s device %s power-management-level\n",
__progname, cmdname);
exit(1);
}
/*
* En/disable features (the automatic acoustic managmement, Advanced Power
* Management) on the disk.
*/
void
device_feature(argc, argv)
int argc;
char *argv[];
{
struct atareq req;
/* No argument */
if (argc != 0)
goto usage;
memset(&req, 0, sizeof(req));
req.command = SET_FEATURES ;
if (strcmp(cmdname, "acousticdisable") == 0)
req.features = WDSF_AAM_DS;
else if (strcmp(cmdname, "readaheadenable") == 0)
req.features = WDSF_READAHEAD_EN;
else if (strcmp(cmdname, "readaheaddisable") == 0)
req.features = WDSF_READAHEAD_DS;
else if (strcmp(cmdname, "writecacheenable") == 0)
req.features = WDSF_EN_WR_CACHE;
else if (strcmp(cmdname, "writecachedisable") == 0)
req.features = WDSF_WRITE_CACHE_DS;
else if (strcmp(cmdname, "apmdisable") == 0)
req.features = WDSF_APM_DS;
else if (strcmp(cmdname, "puisenable") == 0)
req.features = WDSF_PUIS_EN;
else if (strcmp(cmdname, "puisdisable") == 0)
req.features = WDSF_PUIS_DS;
else if (strcmp(cmdname, "puisspinup") == 0)
req.features = WDSF_PUIS_SPINUP;
else
goto usage;
req.timeout = 1000;
ata_command(&req);
return;
usage:
fprintf(stderr, "usage; %s device %s\n", __progname,
cmdname);
exit(1);
}
/*
* Set the idle timer on the disk. Set it for either idle mode or
* standby mode, depending on how we were invoked.
*/
void
device_setidle(argc, argv)
int argc;
char *argv[];
{
unsigned long idle;
struct atareq req;
char *end;
/* Only one argument */
if (argc != 1)
goto usage;
idle = strtoul(argv[0], &end, 0);
if (*end != '\0') {
fprintf(stderr, "Invalid idle time: \"%s\"\n", argv[0]);
exit(1);
}
if (idle > 19800) {
fprintf(stderr, "Idle time has a maximum value of 5.5 "
"hours\n");
exit(1);
}
if (idle != 0 && idle < 5) {
fprintf(stderr, "Idle timer must be at least 5 seconds\n");
exit(1);
}
memset(&req, 0, sizeof(req));
if (idle <= 240*5)
req.sec_count = idle / 5;
else
req.sec_count = idle / (30*60) + 240;
req.command = cmdname[3] == 's' ? WDCC_STANDBY : WDCC_IDLE;
req.timeout = 1000;
ata_command(&req);
return;
usage:
fprintf(stderr, "usage; %s device %s idle-time\n", __progname,
cmdname);
exit(1);
}
/*
* Query the device for the current power mode
*/
void
device_checkpower(argc, argv)
int argc;
char *argv[];
{
struct atareq req;
/* No arguments. */
if (argc != 0)
goto usage;
memset(&req, 0, sizeof(req));
req.command = WDCC_CHECK_PWR;
req.timeout = 1000;
req.flags = ATACMD_READREG;
ata_command(&req);
printf("Current power status: ");
switch (req.sec_count) {
case 0x00:
printf("Standby mode\n");
break;
case 0x80:
printf("Idle mode\n");
break;
case 0xff:
printf("Active mode\n");
break;
default:
printf("Unknown power code (%02x)\n", req.sec_count);
}
return;
usage:
fprintf(stderr, "usage: %s device %s\n", __progname, cmdname);
exit(1);
}
|