Home | History | Annotate | Line # | Download | only in atactl
atactl.c revision 1.31
      1  1.31   atatat /*	$NetBSD: atactl.c,v 1.31 2004/09/10 03:43:52 atatat Exp $	*/
      2   1.1     kenh 
      3   1.1     kenh /*-
      4   1.1     kenh  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1     kenh  * All rights reserved.
      6   1.1     kenh  *
      7   1.1     kenh  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1     kenh  * by Ken Hornstein.
      9   1.1     kenh  *
     10   1.1     kenh  * Redistribution and use in source and binary forms, with or without
     11   1.1     kenh  * modification, are permitted provided that the following conditions
     12   1.1     kenh  * are met:
     13   1.1     kenh  * 1. Redistributions of source code must retain the above copyright
     14   1.1     kenh  *    notice, this list of conditions and the following disclaimer.
     15   1.1     kenh  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1     kenh  *    notice, this list of conditions and the following disclaimer in the
     17   1.1     kenh  *    documentation and/or other materials provided with the distribution.
     18   1.1     kenh  * 3. All advertising materials mentioning features or use of this software
     19   1.1     kenh  *    must display the following acknowledgement:
     20   1.1     kenh  *	This product includes software developed by the NetBSD
     21   1.1     kenh  *	Foundation, Inc. and its contributors.
     22   1.1     kenh  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1     kenh  *    contributors may be used to endorse or promote products derived
     24   1.1     kenh  *    from this software without specific prior written permission.
     25   1.1     kenh  *
     26   1.1     kenh  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1     kenh  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1     kenh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1     kenh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1     kenh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1     kenh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1     kenh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1     kenh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1     kenh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1     kenh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1     kenh  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1     kenh  */
     38   1.1     kenh 
     39   1.1     kenh /*
     40   1.4    jwise  * atactl(8) - a program to control ATA devices.
     41   1.1     kenh  */
     42  1.21      agc #include <sys/cdefs.h>
     43  1.21      agc 
     44  1.21      agc #ifndef lint
     45  1.31   atatat __RCSID("$NetBSD: atactl.c,v 1.31 2004/09/10 03:43:52 atatat Exp $");
     46  1.21      agc #endif
     47  1.21      agc 
     48   1.1     kenh 
     49   1.1     kenh #include <sys/param.h>
     50   1.1     kenh #include <sys/ioctl.h>
     51   1.1     kenh #include <err.h>
     52   1.1     kenh #include <errno.h>
     53   1.1     kenh #include <fcntl.h>
     54   1.1     kenh #include <stdio.h>
     55   1.1     kenh #include <stdlib.h>
     56   1.1     kenh #include <string.h>
     57   1.1     kenh #include <unistd.h>
     58   1.1     kenh #include <util.h>
     59   1.1     kenh 
     60   1.1     kenh #include <dev/ata/atareg.h>
     61   1.1     kenh #include <sys/ataio.h>
     62   1.1     kenh 
     63   1.1     kenh struct command {
     64   1.1     kenh 	const char *cmd_name;
     65   1.5    soren 	const char *arg_names;
     66  1.13   simonb 	void (*cmd_func)(int, char *[]);
     67   1.1     kenh };
     68   1.1     kenh 
     69   1.1     kenh struct bitinfo {
     70   1.1     kenh 	u_int bitmask;
     71   1.1     kenh 	const char *string;
     72   1.1     kenh };
     73   1.1     kenh 
     74  1.13   simonb int	main(int, char *[]);
     75  1.13   simonb void	usage(void);
     76  1.13   simonb void	ata_command(struct atareq *);
     77  1.13   simonb void	print_bitinfo(const char *, const char *, u_int, struct bitinfo *);
     78  1.24      lha void	print_smart_status(void *, void *);
     79  1.24      lha void	print_selftest_entry(int, struct ata_smart_selftest *);
     80  1.24      lha 
     81  1.24      lha void	print_selftest(void *);
     82  1.24      lha 
     83  1.20  mycroft int	is_smart(void);
     84   1.1     kenh 
     85   1.1     kenh int	fd;				/* file descriptor for device */
     86   1.1     kenh const	char *dvname;			/* device name */
     87   1.1     kenh char	dvname_store[MAXPATHLEN];	/* for opendisk(3) */
     88   1.1     kenh const	char *cmdname;			/* command user issued */
     89   1.5    soren const	char *argnames;			/* helpstring: expected arguments */
     90   1.1     kenh 
     91  1.13   simonb void	device_identify(int, char *[]);
     92  1.13   simonb void	device_setidle(int, char *[]);
     93  1.13   simonb void	device_idle(int, char *[]);
     94  1.13   simonb void	device_checkpower(int, char *[]);
     95  1.15    soren void	device_smart(int, char *[]);
     96   1.1     kenh 
     97  1.30   bouyer void	device_smart_temp(struct ata_smart_attr *, uint64_t);
     98  1.24      lha 
     99  1.30   bouyer struct command device_commands[] = {
    100   1.5    soren 	{ "identify",	"",			device_identify },
    101   1.5    soren 	{ "setidle",	"idle-timer",		device_setidle },
    102   1.5    soren 	{ "setstandby",	"standby-timer",	device_setidle },
    103   1.5    soren 	{ "idle",	"",			device_idle },
    104   1.5    soren 	{ "standby",	"",			device_idle },
    105   1.5    soren 	{ "sleep",	"",			device_idle },
    106   1.5    soren 	{ "checkpower",	"",			device_checkpower },
    107  1.24      lha 	{ "smart",	"enable|disable|status|selftest-log", device_smart },
    108   1.5    soren 	{ NULL,		NULL,			NULL },
    109   1.1     kenh };
    110   1.1     kenh 
    111  1.30   bouyer void	bus_reset __P((int, char *[]));
    112  1.30   bouyer 
    113  1.30   bouyer struct command bus_commands[] = {
    114  1.30   bouyer 	{ "reset",	"",			bus_reset },
    115  1.30   bouyer 	{ NULL,		NULL,			NULL },
    116  1.30   bouyer };
    117  1.30   bouyer 
    118   1.1     kenh /*
    119   1.1     kenh  * Tables containing bitmasks used for error reporting and
    120   1.1     kenh  * device identification.
    121   1.1     kenh  */
    122   1.1     kenh 
    123   1.1     kenh struct bitinfo ata_caps[] = {
    124  1.23     yamt 	{ WDC_CAP_DMA, "DMA" },
    125  1.23     yamt 	{ WDC_CAP_LBA, "LBA" },
    126   1.1     kenh 	{ ATA_CAP_STBY, "ATA standby timer values" },
    127   1.1     kenh 	{ WDC_CAP_IORDY, "IORDY operation" },
    128   1.1     kenh 	{ WDC_CAP_IORDY_DSBL, "IORDY disabling" },
    129  1.22     fvdl 	{ 0, NULL },
    130   1.1     kenh };
    131   1.1     kenh 
    132   1.1     kenh struct bitinfo ata_vers[] = {
    133   1.1     kenh 	{ WDC_VER_ATA1,	"ATA-1" },
    134   1.1     kenh 	{ WDC_VER_ATA2,	"ATA-2" },
    135   1.1     kenh 	{ WDC_VER_ATA3,	"ATA-3" },
    136   1.1     kenh 	{ WDC_VER_ATA4,	"ATA-4" },
    137  1.23     yamt 	{ WDC_VER_ATA5,	"ATA-5" },
    138  1.23     yamt 	{ WDC_VER_ATA6,	"ATA-6" },
    139  1.23     yamt 	{ WDC_VER_ATA7,	"ATA-7" },
    140  1.22     fvdl 	{ 0, NULL },
    141   1.1     kenh };
    142   1.1     kenh 
    143   1.1     kenh struct bitinfo ata_cmd_set1[] = {
    144   1.1     kenh 	{ WDC_CMD1_NOP, "NOP command" },
    145   1.1     kenh 	{ WDC_CMD1_RB, "READ BUFFER command" },
    146   1.1     kenh 	{ WDC_CMD1_WB, "WRITE BUFFER command" },
    147   1.1     kenh 	{ WDC_CMD1_HPA, "Host Protected Area feature set" },
    148   1.1     kenh 	{ WDC_CMD1_DVRST, "DEVICE RESET command" },
    149   1.1     kenh 	{ WDC_CMD1_SRV, "SERVICE interrupt" },
    150   1.1     kenh 	{ WDC_CMD1_RLSE, "release interrupt" },
    151   1.1     kenh 	{ WDC_CMD1_AHEAD, "look-ahead" },
    152   1.1     kenh 	{ WDC_CMD1_CACHE, "write cache" },
    153   1.1     kenh 	{ WDC_CMD1_PKT, "PACKET command feature set" },
    154   1.1     kenh 	{ WDC_CMD1_PM, "Power Management feature set" },
    155   1.1     kenh 	{ WDC_CMD1_REMOV, "Removable Media feature set" },
    156   1.1     kenh 	{ WDC_CMD1_SEC, "Security Mode feature set" },
    157   1.1     kenh 	{ WDC_CMD1_SMART, "SMART feature set" },
    158  1.22     fvdl 	{ 0, NULL },
    159   1.1     kenh };
    160   1.1     kenh 
    161   1.1     kenh struct bitinfo ata_cmd_set2[] = {
    162  1.23     yamt 	{ ATA_CMD2_FCE, "FLUSH CACHE EXT command" },
    163  1.23     yamt 	{ WDC_CMD2_FC, "FLUSH CACHE command" },
    164  1.23     yamt 	{ WDC_CMD2_DCO, "Device Configuration Overlay feature set" },
    165  1.23     yamt 	{ ATA_CMD2_LBA48, "48-bit Address feature set" },
    166  1.23     yamt 	{ WDC_CMD2_AAM, "Automatic Acoustic Management feature set" },
    167  1.28      wiz 	{ WDC_CMD2_SM, "SET MAX security extension" },
    168  1.23     yamt 	{ WDC_CMD2_SFREQ, "SET FEATURES required to spin-up after power-up" },
    169  1.23     yamt 	{ WDC_CMD2_PUIS, "Power-Up In Standby feature set" },
    170   1.1     kenh 	{ WDC_CMD2_RMSN, "Removable Media Status Notification feature set" },
    171   1.1     kenh 	{ ATA_CMD2_APM, "Advanced Power Management feature set" },
    172   1.1     kenh 	{ ATA_CMD2_CFA, "CFA feature set" },
    173   1.6    soren 	{ ATA_CMD2_RWQ, "READ/WRITE DMA QUEUED commands" },
    174   1.1     kenh 	{ WDC_CMD2_DM, "DOWNLOAD MICROCODE command" },
    175  1.22     fvdl 	{ 0, NULL },
    176   1.1     kenh };
    177   1.1     kenh 
    178  1.23     yamt struct bitinfo ata_cmd_ext[] = {
    179  1.23     yamt 	{ ATA_CMDE_TLCONT, "Time-limited R/W feature set R/W Continuous mode" },
    180  1.23     yamt 	{ ATA_CMDE_TL, "Time-limited Read/Write" },
    181  1.23     yamt 	{ ATA_CMDE_URGW, "URG bit for WRITE STREAM DMA/PIO" },
    182  1.23     yamt 	{ ATA_CMDE_URGR, "URG bit for READ STREAM DMA/PIO" },
    183  1.23     yamt 	{ ATA_CMDE_WWN, "World Wide name" },
    184  1.23     yamt 	{ ATA_CMDE_WQFE, "WRITE DMA QUEUED FUA EXT command" },
    185  1.23     yamt 	{ ATA_CMDE_WFE, "WRITE DMA/MULTIPLE FUA EXT commands" },
    186  1.23     yamt 	{ ATA_CMDE_GPL, "General Purpose Logging feature set" },
    187  1.23     yamt 	{ ATA_CMDE_STREAM, "Streaming feature set" },
    188  1.23     yamt 	{ ATA_CMDE_MCPTC, "Media Card Pass Through Command feature set" },
    189  1.23     yamt 	{ ATA_CMDE_MS, "Media serial number" },
    190  1.23     yamt 	{ ATA_CMDE_SST, "SMART self-test" },
    191  1.23     yamt 	{ ATA_CMDE_SEL, "SMART error logging" },
    192  1.23     yamt 	{ 0, NULL },
    193  1.23     yamt };
    194  1.23     yamt 
    195  1.17    soren static const struct {
    196  1.17    soren 	const int	id;
    197  1.17    soren 	const char	*name;
    198  1.29  mycroft 	void (*special)(struct ata_smart_attr *, uint64_t);
    199  1.17    soren } smart_attrs[] = {
    200  1.19    soren 	{ 1,		"Raw read error rate" },
    201  1.17    soren 	{ 2,		"Throughput performance" },
    202  1.17    soren 	{ 3,		"Spin-up time" },
    203  1.17    soren 	{ 4,		"Start/stop count" },
    204  1.17    soren 	{ 5,		"Reallocated sector count" },
    205  1.17    soren 	{ 7,		"Seek error rate" },
    206  1.17    soren 	{ 8,		"Seek time performance" },
    207  1.17    soren 	{ 9,		"Power-on hours count" },
    208  1.17    soren 	{ 10,		"Spin retry count" },
    209  1.17    soren 	{ 11,		"Calibration retry count" },
    210  1.17    soren 	{ 12,		"Device power cycle count" },
    211  1.17    soren 	{ 191,		"Gsense error rate" },
    212  1.17    soren 	{ 192,		"Power-off retract count" },
    213  1.17    soren 	{ 193,		"Load cycle count" },
    214  1.30   bouyer 	{ 194,		"Temperature",			device_smart_temp},
    215  1.24      lha 	{ 195,		"Hardware ECC Recovered" },
    216  1.17    soren 	{ 196,		"Reallocated event count" },
    217  1.17    soren 	{ 197,		"Current pending sector" },
    218  1.17    soren 	{ 198,		"Offline uncorrectable" },
    219  1.17    soren 	{ 199,		"Ultra DMA CRC error count" },
    220  1.24      lha 	{ 0,		"Unknown" },
    221  1.17    soren };
    222  1.17    soren 
    223   1.1     kenh int
    224  1.13   simonb main(int argc, char *argv[])
    225   1.1     kenh {
    226   1.1     kenh 	int i;
    227  1.30   bouyer 	struct command *commands = NULL;
    228   1.1     kenh 
    229   1.1     kenh 	/* Must have at least: device command */
    230   1.1     kenh 	if (argc < 3)
    231   1.1     kenh 		usage();
    232   1.1     kenh 
    233   1.1     kenh 	/* Skip program name, get and skip device name and command. */
    234   1.1     kenh 	dvname = argv[1];
    235   1.1     kenh 	cmdname = argv[2];
    236   1.1     kenh 	argv += 3;
    237   1.1     kenh 	argc -= 3;
    238   1.1     kenh 
    239   1.1     kenh 	/*
    240   1.1     kenh 	 * Open the device
    241   1.1     kenh 	 */
    242   1.1     kenh 	fd = opendisk(dvname, O_RDWR, dvname_store, sizeof(dvname_store), 0);
    243   1.1     kenh 	if (fd == -1) {
    244   1.1     kenh 		if (errno == ENOENT) {
    245   1.1     kenh 			/*
    246   1.1     kenh 			 * Device doesn't exist.  Probably trying to open
    247   1.1     kenh 			 * a device which doesn't use disk semantics for
    248   1.1     kenh 			 * device name.  Try again, specifying "cooked",
    249   1.1     kenh 			 * which leaves off the "r" in front of the device's
    250   1.1     kenh 			 * name.
    251   1.1     kenh 			 */
    252   1.1     kenh 			fd = opendisk(dvname, O_RDWR, dvname_store,
    253   1.1     kenh 			    sizeof(dvname_store), 1);
    254   1.1     kenh 			if (fd == -1)
    255   1.1     kenh 				err(1, "%s", dvname);
    256   1.4    jwise 		} else
    257   1.4    jwise 			err(1, "%s", dvname);
    258   1.1     kenh 	}
    259   1.1     kenh 
    260   1.1     kenh 	/*
    261   1.1     kenh 	 * Point the dvname at the actual device name that opendisk() opened.
    262   1.1     kenh 	 */
    263   1.1     kenh 	dvname = dvname_store;
    264   1.1     kenh 
    265   1.1     kenh 	/* Look up and call the command. */
    266  1.30   bouyer 	for (i = 0; device_commands[i].cmd_name != NULL; i++) {
    267  1.30   bouyer 		if (strcmp(cmdname, device_commands[i].cmd_name) == 0) {
    268  1.30   bouyer 			commands = &device_commands[i];
    269   1.1     kenh 			break;
    270  1.30   bouyer 		}
    271  1.30   bouyer 	}
    272  1.30   bouyer 	if (commands == NULL) {
    273  1.30   bouyer 		for (i = 0; bus_commands[i].cmd_name != NULL; i++) {
    274  1.30   bouyer 			if (strcmp(cmdname, bus_commands[i].cmd_name) == 0) {
    275  1.30   bouyer 				commands = &bus_commands[i];
    276  1.30   bouyer 				break;
    277  1.30   bouyer 			}
    278  1.30   bouyer 		}
    279  1.30   bouyer 	}
    280  1.30   bouyer 	if (commands == NULL)
    281  1.12       ad 		errx(1, "unknown command: %s", cmdname);
    282   1.1     kenh 
    283  1.30   bouyer 	argnames = commands->arg_names;
    284   1.5    soren 
    285  1.30   bouyer 	(*commands->cmd_func)(argc, argv);
    286   1.1     kenh 	exit(0);
    287   1.1     kenh }
    288   1.1     kenh 
    289   1.1     kenh void
    290  1.13   simonb usage(void)
    291   1.1     kenh {
    292   1.5    soren 	int i;
    293   1.1     kenh 
    294  1.27     jmmv 	fprintf(stderr, "usage: %s device command [arg [...]]\n",
    295  1.11      cgd 	    getprogname());
    296   1.5    soren 
    297   1.5    soren 	fprintf(stderr, "   Available device commands:\n");
    298  1.30   bouyer 	for (i=0; device_commands[i].cmd_name != NULL; i++)
    299  1.30   bouyer 		fprintf(stderr, "\t%s %s\n", device_commands[i].cmd_name,
    300  1.30   bouyer 					    device_commands[i].arg_names);
    301  1.30   bouyer 
    302  1.30   bouyer 	fprintf(stderr, "   Available bus commands:\n");
    303  1.30   bouyer 	for (i=0; bus_commands[i].cmd_name != NULL; i++)
    304  1.30   bouyer 		fprintf(stderr, "\t%s %s\n", bus_commands[i].cmd_name,
    305  1.30   bouyer 					    bus_commands[i].arg_names);
    306   1.5    soren 
    307   1.1     kenh 	exit(1);
    308   1.1     kenh }
    309   1.1     kenh 
    310   1.1     kenh /*
    311   1.1     kenh  * Wrapper that calls ATAIOCCOMMAND and checks for errors
    312   1.1     kenh  */
    313   1.1     kenh 
    314   1.1     kenh void
    315  1.13   simonb ata_command(struct atareq *req)
    316   1.1     kenh {
    317   1.1     kenh 	int error;
    318   1.1     kenh 
    319   1.1     kenh 	error = ioctl(fd, ATAIOCCOMMAND, req);
    320   1.1     kenh 
    321   1.1     kenh 	if (error == -1)
    322   1.1     kenh 		err(1, "ATAIOCCOMMAND failed");
    323   1.1     kenh 
    324   1.1     kenh 	switch (req->retsts) {
    325   1.1     kenh 
    326   1.1     kenh 	case ATACMD_OK:
    327   1.1     kenh 		return;
    328   1.1     kenh 	case ATACMD_TIMEOUT:
    329   1.1     kenh 		fprintf(stderr, "ATA command timed out\n");
    330   1.1     kenh 		exit(1);
    331   1.1     kenh 	case ATACMD_DF:
    332   1.1     kenh 		fprintf(stderr, "ATA device returned a Device Fault\n");
    333   1.1     kenh 		exit(1);
    334   1.1     kenh 	case ATACMD_ERROR:
    335   1.1     kenh 		if (req->error & WDCE_ABRT)
    336   1.1     kenh 			fprintf(stderr, "ATA device returned Aborted "
    337   1.1     kenh 				"Command\n");
    338   1.1     kenh 		else
    339   1.1     kenh 			fprintf(stderr, "ATA device returned error register "
    340   1.1     kenh 				"%0x\n", req->error);
    341   1.1     kenh 		exit(1);
    342   1.1     kenh 	default:
    343   1.1     kenh 		fprintf(stderr, "ATAIOCCOMMAND returned unknown result code "
    344   1.1     kenh 			"%d\n", req->retsts);
    345   1.1     kenh 		exit(1);
    346   1.1     kenh 	}
    347   1.1     kenh }
    348   1.1     kenh 
    349   1.1     kenh /*
    350   1.1     kenh  * Print out strings associated with particular bitmasks
    351   1.1     kenh  */
    352   1.1     kenh 
    353   1.1     kenh void
    354  1.13   simonb print_bitinfo(const char *bf, const char *af, u_int bits, struct bitinfo *binfo)
    355   1.1     kenh {
    356   1.1     kenh 
    357  1.22     fvdl 	for (; binfo->bitmask != 0; binfo++)
    358   1.1     kenh 		if (bits & binfo->bitmask)
    359  1.10       is 			printf("%s%s%s", bf, binfo->string, af);
    360   1.1     kenh }
    361   1.1     kenh 
    362  1.24      lha 
    363  1.24      lha /*
    364  1.24      lha  * Try to print SMART temperature field
    365  1.24      lha  */
    366  1.24      lha 
    367  1.24      lha void
    368  1.30   bouyer device_smart_temp(struct ata_smart_attr *attr, uint64_t raw_value)
    369  1.24      lha {
    370  1.29  mycroft 	printf("%" PRIu8, attr->raw[0]);
    371  1.24      lha 	if (attr->raw[0] != raw_value)
    372  1.29  mycroft 		printf(" Lifetime max/min %" PRIu8 "/%" PRIu8,
    373  1.29  mycroft 		    attr->raw[2], attr->raw[4]);
    374  1.24      lha }
    375  1.24      lha 
    376  1.24      lha 
    377   1.1     kenh /*
    378  1.15    soren  * Print out SMART attribute thresholds and values
    379  1.15    soren  */
    380  1.15    soren 
    381  1.15    soren void
    382  1.15    soren print_smart_status(void *vbuf, void *tbuf)
    383  1.15    soren {
    384  1.15    soren 	struct ata_smart_attributes *value_buf = vbuf;
    385  1.15    soren 	struct ata_smart_thresholds *threshold_buf = tbuf;
    386  1.24      lha 	struct ata_smart_attr *attr;
    387  1.29  mycroft 	uint64_t raw_value;
    388  1.24      lha 	int flags;
    389  1.17    soren 	int i, j;
    390  1.24      lha 	int aid;
    391  1.15    soren 	int8_t checksum;
    392  1.15    soren 
    393  1.15    soren 	for (i = checksum = 0; i < 511; i++)
    394  1.15    soren 		checksum += ((int8_t *) value_buf)[i];
    395  1.15    soren 	checksum *= -1;
    396  1.15    soren 	if (checksum != value_buf->checksum) {
    397  1.15    soren 		fprintf(stderr, "SMART attribute values checksum error\n");
    398  1.15    soren 		return;
    399  1.15    soren 	}
    400  1.15    soren 
    401  1.15    soren 	for (i = checksum = 0; i < 511; i++)
    402  1.15    soren 		checksum += ((int8_t *) threshold_buf)[i];
    403  1.15    soren 	checksum *= -1;
    404  1.15    soren 	if (checksum != threshold_buf->checksum) {
    405  1.15    soren 		fprintf(stderr, "SMART attribute thresholds checksum error\n");
    406  1.15    soren 		return;
    407  1.15    soren 	}
    408  1.15    soren 
    409  1.24      lha 	printf("id value thresh crit collect reliability description\t\t\traw\n");
    410  1.24      lha 	for (i = 0; i < 256; i++) {
    411  1.24      lha 		int thresh = 0;
    412  1.24      lha 
    413  1.24      lha 		attr = NULL;
    414  1.24      lha 
    415  1.24      lha 		for (j = 0; j < 30; j++) {
    416  1.24      lha 			if (value_buf->attributes[j].id == i)
    417  1.24      lha 				attr = &value_buf->attributes[j];
    418  1.24      lha 			if (threshold_buf->thresholds[j].id == i)
    419  1.24      lha 				thresh = threshold_buf->thresholds[j].value;
    420  1.31   atatat 		}
    421  1.15    soren 
    422  1.24      lha 		if (thresh && attr == NULL)
    423  1.24      lha 			errx(1, "threshold but not attr %d", i);
    424  1.24      lha 		if (attr == NULL)
    425  1.24      lha 			continue;
    426  1.24      lha 
    427  1.24      lha 		if (attr->value == 0||attr->value == 0xFE||attr->value == 0xFF)
    428  1.24      lha 			continue;
    429  1.24      lha 
    430  1.24      lha 		for (aid = 0;
    431  1.24      lha 		     smart_attrs[aid].id != i && smart_attrs[aid].id != 0;
    432  1.24      lha 		     aid++)
    433  1.24      lha 			;
    434  1.24      lha 
    435  1.24      lha 		flags = attr->flags;
    436  1.24      lha 
    437  1.29  mycroft 		printf("%3d %3d  %3d     %-3s %-7s %stive    %-24s\t",
    438  1.24      lha 		    i, attr->value, thresh,
    439  1.24      lha 		    flags & WDSM_ATTR_ADVISORY ? "yes" : "no",
    440  1.24      lha 		    flags & WDSM_ATTR_COLLECTIVE ? "online" : "offline",
    441  1.24      lha 		    attr->value > thresh ? "posi" : "nega",
    442  1.24      lha 		    smart_attrs[aid].name);
    443  1.24      lha 
    444  1.24      lha 		for (j = 0, raw_value = 0; j < 6; j++)
    445  1.29  mycroft 			raw_value += ((uint64_t)attr->raw[j]) << (8*j);
    446  1.24      lha 
    447  1.24      lha 		if (smart_attrs[aid].special)
    448  1.24      lha 			(*smart_attrs[aid].special)(attr, raw_value);
    449  1.29  mycroft 		else
    450  1.29  mycroft 			printf("%" PRIu64, raw_value);
    451  1.24      lha 		printf("\n");
    452  1.15    soren 		}
    453  1.15    soren 	}
    454  1.24      lha 
    455  1.24      lha struct {
    456  1.24      lha 	int number;
    457  1.24      lha 	const char *name;
    458  1.24      lha } selftest_name[] = {
    459  1.24      lha 	{ 0, "Off-line" },
    460  1.24      lha 	{ 1, "Short off-line" },
    461  1.24      lha 	{ 2, "Extended off-line" },
    462  1.24      lha 	{ 127, "Abort off-line test" },
    463  1.24      lha 	{ 129, "Short captive" },
    464  1.24      lha 	{ 130, "Extended captive" },
    465  1.24      lha 	{ 256, "Unknown test" }, /* larger then u_int8_t */
    466  1.24      lha 	{ 0, NULL }
    467  1.24      lha };
    468  1.24      lha 
    469  1.24      lha const char *selftest_status[] = {
    470  1.24      lha 	"No error",
    471  1.24      lha 	"Aborted by the host",
    472  1.24      lha 	"Interruped by the host by reset",
    473  1.24      lha 	"Fatal error or unknown test error",
    474  1.24      lha 	"Unknown test element failed",
    475  1.24      lha 	"Electrical test element failed",
    476  1.24      lha 	"The Servo (and/or seek) test element failed",
    477  1.24      lha 	"Read element of test failed",
    478  1.24      lha 	"Reserved",
    479  1.24      lha 	"Reserved",
    480  1.24      lha 	"Reserved",
    481  1.24      lha 	"Reserved",
    482  1.24      lha 	"Reserved",
    483  1.24      lha 	"Reserved",
    484  1.24      lha 	"Reserved",
    485  1.24      lha 	"Self-test in progress"
    486  1.24      lha };
    487  1.24      lha 
    488  1.24      lha void
    489  1.24      lha print_selftest_entry(int num, struct ata_smart_selftest *le)
    490  1.24      lha {
    491  1.24      lha 	unsigned char *p;
    492  1.24      lha 	int i;
    493  1.24      lha 
    494  1.24      lha 	/* check if all zero */
    495  1.24      lha 	for (p = (void *)le, i = 0; i < sizeof(*le); i++)
    496  1.24      lha 		if (p[i] != 0)
    497  1.24      lha 			break;
    498  1.24      lha 	if (i == sizeof(*le))
    499  1.24      lha 		return;
    500  1.24      lha 
    501  1.24      lha 	printf("Log entry: %d\n", num);
    502  1.24      lha 
    503  1.24      lha 	/* Get test name */
    504  1.24      lha 	for (i = 0; selftest_name[i].name != NULL; i++)
    505  1.24      lha 		if (selftest_name[i].number == le->number)
    506  1.24      lha 			break;
    507  1.24      lha 	if (selftest_name[i].number == 0)
    508  1.24      lha 		i = 255; /* unknown test */
    509  1.24      lha 
    510  1.24      lha 	printf("\tName: %s\n", selftest_name[i].name);
    511  1.24      lha 	printf("\tStatus: %s\n", selftest_status[le->status >> 4]);
    512  1.24      lha 	if (le->status >> 4 == 15)
    513  1.24      lha 		printf("\tPrecent of test remaning: %1d0\n", le->status & 0xf);
    514  1.24      lha 	if (le->status)
    515  1.24      lha 		printf("LBA first error: %d\n", le->lba_first_error);
    516  1.24      lha }
    517  1.24      lha 
    518  1.24      lha void
    519  1.24      lha print_selftest(void *buf)
    520  1.24      lha {
    521  1.24      lha 	struct ata_smart_selftestlog *stlog = buf;
    522  1.24      lha 	int8_t checksum;
    523  1.24      lha 	int i;
    524  1.24      lha 
    525  1.24      lha 	for (i = checksum = 0; i < 511; i++)
    526  1.24      lha 		checksum += ((int8_t *) buf)[i];
    527  1.24      lha   	checksum *= -1;
    528  1.24      lha 	if ((u_int8_t)checksum != stlog->checksum) {
    529  1.24      lha 		fprintf(stderr, "SMART selftest log checksum error\n");
    530  1.24      lha 		return;
    531  1.24      lha 	}
    532  1.24      lha 
    533  1.24      lha 	if (stlog->data_structure_revision != 1) {
    534  1.24      lha 		fprintf(stderr, "Log revision not 1");
    535  1.24      lha 		return;
    536  1.24      lha 	}
    537  1.24      lha 
    538  1.24      lha 	if (stlog->mostrecenttest == 0) {
    539  1.24      lha 		printf("No self-tests have been logged\n");
    540  1.24      lha 		return;
    541  1.24      lha 	}
    542  1.24      lha 
    543  1.24      lha 	if (stlog->mostrecenttest > 22) {
    544  1.24      lha 		fprintf(stderr, "Most recent test is too large\n");
    545  1.24      lha 		return;
    546  1.24      lha 	}
    547  1.24      lha 
    548  1.24      lha 	for (i = stlog->mostrecenttest; i < 22; i++)
    549  1.24      lha 		print_selftest_entry(i, &stlog->log_entries[i]);
    550  1.24      lha 	for (i = 0; i < stlog->mostrecenttest; i++)
    551  1.24      lha 		print_selftest_entry(i, &stlog->log_entries[i]);
    552  1.15    soren }
    553  1.15    soren 
    554  1.15    soren /*
    555  1.15    soren  * is_smart:
    556  1.15    soren  *
    557  1.15    soren  *	Detect whether device supports SMART and SMART is enabled.
    558  1.15    soren  */
    559  1.15    soren 
    560  1.15    soren int
    561  1.20  mycroft is_smart(void)
    562  1.15    soren {
    563  1.15    soren 	int retval = 0;
    564  1.15    soren 	struct atareq req;
    565  1.15    soren 	unsigned char inbuf[DEV_BSIZE];
    566  1.15    soren 	struct ataparams *inqbuf;
    567  1.15    soren 	char *status;
    568  1.15    soren 
    569  1.15    soren 	memset(&inbuf, 0, sizeof(inbuf));
    570  1.15    soren 	memset(&req, 0, sizeof(req));
    571  1.15    soren 
    572  1.15    soren 	inqbuf = (struct ataparams *) inbuf;
    573  1.15    soren 
    574  1.15    soren 	req.flags = ATACMD_READ;
    575  1.15    soren 	req.command = WDCC_IDENTIFY;
    576  1.15    soren 	req.databuf = (caddr_t) inbuf;
    577  1.15    soren 	req.datalen = sizeof(inbuf);
    578  1.15    soren 	req.timeout = 1000;
    579  1.15    soren 
    580  1.15    soren 	ata_command(&req);
    581  1.15    soren 
    582  1.15    soren 	if (inqbuf->atap_cmd_def != 0 && inqbuf->atap_cmd_def != 0xffff) {
    583  1.15    soren 		if (!(inqbuf->atap_cmd_set1 & WDC_CMD1_SMART)) {
    584  1.15    soren 			fprintf(stderr, "SMART unsupported\n");
    585  1.15    soren 		} else {
    586  1.15    soren 			if (inqbuf->atap_ata_major <= WDC_VER_ATA5 ||
    587  1.15    soren 			    inqbuf->atap_cmd_set2 == 0xffff ||
    588  1.15    soren 			    inqbuf->atap_cmd_set2 == 0x0000) {
    589  1.15    soren 				status = "status unknown";
    590  1.15    soren 				retval = 2;
    591  1.15    soren 			} else {
    592  1.18  mycroft 				if (inqbuf->atap_cmd1_en & WDC_CMD1_SMART) {
    593  1.15    soren 					status = "enabled";
    594  1.15    soren 					retval = 1;
    595  1.15    soren 				} else {
    596  1.15    soren 					status = "disabled";
    597  1.15    soren 				}
    598  1.15    soren 			}
    599  1.20  mycroft 			printf("SMART supported, SMART %s\n", status);
    600  1.15    soren 		}
    601  1.15    soren 	}
    602  1.15    soren 	return retval;
    603  1.15    soren }
    604  1.15    soren 
    605  1.15    soren /*
    606   1.1     kenh  * DEVICE COMMANDS
    607   1.1     kenh  */
    608   1.1     kenh 
    609   1.1     kenh /*
    610   1.1     kenh  * device_identify:
    611   1.1     kenh  *
    612   1.1     kenh  *	Display the identity of the device
    613   1.1     kenh  */
    614   1.1     kenh void
    615  1.13   simonb device_identify(int argc, char *argv[])
    616   1.1     kenh {
    617   1.1     kenh 	struct ataparams *inqbuf;
    618   1.1     kenh 	struct atareq req;
    619   1.1     kenh 	unsigned char inbuf[DEV_BSIZE];
    620   1.2     kenh #if BYTE_ORDER == LITTLE_ENDIAN
    621   1.1     kenh 	int i;
    622   1.1     kenh 	u_int16_t *p;
    623   1.1     kenh #endif
    624   1.1     kenh 
    625   1.1     kenh 	/* No arguments. */
    626   1.1     kenh 	if (argc != 0)
    627   1.5    soren 		usage();
    628   1.1     kenh 
    629   1.1     kenh 	memset(&inbuf, 0, sizeof(inbuf));
    630   1.1     kenh 	memset(&req, 0, sizeof(req));
    631   1.1     kenh 
    632   1.1     kenh 	inqbuf = (struct ataparams *) inbuf;
    633   1.1     kenh 
    634   1.1     kenh 	req.flags = ATACMD_READ;
    635   1.1     kenh 	req.command = WDCC_IDENTIFY;
    636   1.1     kenh 	req.databuf = (caddr_t) inbuf;
    637   1.1     kenh 	req.datalen = sizeof(inbuf);
    638   1.1     kenh 	req.timeout = 1000;
    639   1.1     kenh 
    640   1.1     kenh 	ata_command(&req);
    641   1.1     kenh 
    642   1.1     kenh #if BYTE_ORDER == LITTLE_ENDIAN
    643   1.1     kenh 	/*
    644   1.1     kenh 	 * On little endian machines, we need to shuffle the string
    645   1.1     kenh 	 * byte order.  However, we don't have to do this for NEC or
    646   1.1     kenh 	 * Mitsumi ATAPI devices
    647   1.1     kenh 	 */
    648   1.1     kenh 
    649   1.1     kenh 	if (!((inqbuf->atap_config & WDC_CFG_ATAPI_MASK) == WDC_CFG_ATAPI &&
    650   1.1     kenh 	      ((inqbuf->atap_model[0] == 'N' &&
    651   1.1     kenh 		  inqbuf->atap_model[1] == 'E') ||
    652   1.1     kenh 	       (inqbuf->atap_model[0] == 'F' &&
    653   1.1     kenh 		  inqbuf->atap_model[1] == 'X')))) {
    654   1.1     kenh 		for (i = 0 ; i < sizeof(inqbuf->atap_model); i += 2) {
    655   1.1     kenh 			p = (u_short *) (inqbuf->atap_model + i);
    656   1.1     kenh 			*p = ntohs(*p);
    657   1.1     kenh 		}
    658   1.1     kenh 		for (i = 0 ; i < sizeof(inqbuf->atap_serial); i += 2) {
    659   1.1     kenh 			p = (u_short *) (inqbuf->atap_serial + i);
    660   1.1     kenh 			*p = ntohs(*p);
    661   1.1     kenh 		}
    662   1.1     kenh 		for (i = 0 ; i < sizeof(inqbuf->atap_revision); i += 2) {
    663   1.1     kenh 			p = (u_short *) (inqbuf->atap_revision + i);
    664   1.1     kenh 			*p = ntohs(*p);
    665   1.1     kenh 		}
    666   1.1     kenh 	}
    667   1.1     kenh #endif
    668   1.1     kenh 
    669   1.1     kenh 	/*
    670   1.1     kenh 	 * Strip blanks off of the info strings.  Yuck, I wish this was
    671   1.1     kenh 	 * cleaner.
    672   1.1     kenh 	 */
    673   1.1     kenh 
    674   1.1     kenh 	if (inqbuf->atap_model[sizeof(inqbuf->atap_model) - 1] == ' ') {
    675   1.1     kenh 		inqbuf->atap_model[sizeof(inqbuf->atap_model) - 1] = '\0';
    676   1.1     kenh 		while (inqbuf->atap_model[strlen(inqbuf->atap_model) - 1] == ' ')
    677   1.1     kenh 			inqbuf->atap_model[strlen(inqbuf->atap_model) - 1] = '\0';
    678   1.1     kenh 	}
    679   1.1     kenh 
    680   1.1     kenh 	if (inqbuf->atap_revision[sizeof(inqbuf->atap_revision) - 1] == ' ') {
    681   1.1     kenh 		inqbuf->atap_revision[sizeof(inqbuf->atap_revision) - 1] = '\0';
    682   1.1     kenh 		while (inqbuf->atap_revision[strlen(inqbuf->atap_revision) - 1] == ' ')
    683   1.1     kenh 			inqbuf->atap_revision[strlen(inqbuf->atap_revision) - 1] = '\0';
    684   1.1     kenh 	}
    685   1.1     kenh 
    686   1.1     kenh 	if (inqbuf->atap_serial[sizeof(inqbuf->atap_serial) - 1] == ' ') {
    687   1.1     kenh 		inqbuf->atap_serial[sizeof(inqbuf->atap_serial) - 1] = '\0';
    688   1.1     kenh 		while (inqbuf->atap_serial[strlen(inqbuf->atap_serial) - 1] == ' ')
    689   1.1     kenh 			inqbuf->atap_serial[strlen(inqbuf->atap_serial) - 1] = '\0';
    690   1.1     kenh 	}
    691   1.1     kenh 
    692   1.1     kenh 	printf("Model: %.*s, Rev: %.*s, Serial #: %.*s\n",
    693   1.1     kenh 	       (int) sizeof(inqbuf->atap_model), inqbuf->atap_model,
    694   1.1     kenh 	       (int) sizeof(inqbuf->atap_revision), inqbuf->atap_revision,
    695   1.1     kenh 	       (int) sizeof(inqbuf->atap_serial), inqbuf->atap_serial);
    696   1.1     kenh 
    697   1.1     kenh 	printf("Device type: %s, %s\n", inqbuf->atap_config & WDC_CFG_ATAPI ?
    698   1.1     kenh 	       "ATAPI" : "ATA", inqbuf->atap_config & ATA_CFG_FIXED ? "fixed" :
    699   1.1     kenh 	       "removable");
    700   1.1     kenh 
    701   1.1     kenh 	if ((inqbuf->atap_config & WDC_CFG_ATAPI_MASK) == 0)
    702   1.1     kenh 		printf("Cylinders: %d, heads: %d, sec/track: %d, total "
    703   1.1     kenh 		       "sectors: %d\n", inqbuf->atap_cylinders,
    704   1.1     kenh 		       inqbuf->atap_heads, inqbuf->atap_sectors,
    705   1.1     kenh 		       (inqbuf->atap_capacity[1] << 16) |
    706   1.1     kenh 		       inqbuf->atap_capacity[0]);
    707   1.1     kenh 
    708   1.1     kenh 	if (inqbuf->atap_queuedepth & WDC_QUEUE_DEPTH_MASK)
    709   1.1     kenh 		printf("Device supports command queue depth of %d\n",
    710   1.1     kenh 		       inqbuf->atap_queuedepth & 0xf);
    711   1.1     kenh 
    712   1.1     kenh 	printf("Device capabilities:\n");
    713  1.10       is 	print_bitinfo("\t", "\n", inqbuf->atap_capabilities1, ata_caps);
    714   1.1     kenh 
    715   1.1     kenh 	if (inqbuf->atap_ata_major != 0 && inqbuf->atap_ata_major != 0xffff) {
    716   1.1     kenh 		printf("Device supports following standards:\n");
    717  1.10       is 		print_bitinfo("", " ", inqbuf->atap_ata_major, ata_vers);
    718   1.1     kenh 		printf("\n");
    719   1.1     kenh 	}
    720   1.1     kenh 
    721   1.1     kenh 	if (inqbuf->atap_cmd_set1 != 0 && inqbuf->atap_cmd_set1 != 0xffff &&
    722   1.1     kenh 	    inqbuf->atap_cmd_set2 != 0 && inqbuf->atap_cmd_set2 != 0xffff) {
    723   1.1     kenh 		printf("Command set support:\n");
    724  1.10       is 		print_bitinfo("\t", "\n", inqbuf->atap_cmd_set1, ata_cmd_set1);
    725  1.10       is 		print_bitinfo("\t", "\n", inqbuf->atap_cmd_set2, ata_cmd_set2);
    726  1.23     yamt 		if (inqbuf->atap_cmd_ext != 0 && inqbuf->atap_cmd_ext != 0xffff)
    727  1.23     yamt 			print_bitinfo("\t", "\n", inqbuf->atap_cmd_ext,
    728  1.23     yamt 			    ata_cmd_ext);
    729   1.1     kenh 	}
    730   1.1     kenh 
    731   1.1     kenh 	if (inqbuf->atap_cmd_def != 0 && inqbuf->atap_cmd_def != 0xffff) {
    732   1.1     kenh 		printf("Command sets/features enabled:\n");
    733  1.14   simonb 		print_bitinfo("\t", "\n", inqbuf->atap_cmd1_en &
    734   1.1     kenh 			      (WDC_CMD1_SRV | WDC_CMD1_RLSE | WDC_CMD1_AHEAD |
    735   1.1     kenh 			       WDC_CMD1_CACHE | WDC_CMD1_SEC | WDC_CMD1_SMART),
    736   1.1     kenh 			       ata_cmd_set1);
    737  1.14   simonb 		print_bitinfo("\t", "\n", inqbuf->atap_cmd2_en &
    738   1.1     kenh 			      (WDC_CMD2_RMSN | ATA_CMD2_APM), ata_cmd_set2);
    739   1.1     kenh 	}
    740   1.1     kenh 
    741   1.1     kenh 	return;
    742   1.1     kenh }
    743   1.1     kenh 
    744   1.1     kenh /*
    745   1.1     kenh  * device idle:
    746   1.1     kenh  *
    747   1.1     kenh  * issue the IDLE IMMEDIATE command to the drive
    748   1.1     kenh  */
    749   1.1     kenh 
    750   1.1     kenh void
    751  1.13   simonb device_idle(int argc, char *argv[])
    752   1.1     kenh {
    753   1.1     kenh 	struct atareq req;
    754   1.1     kenh 
    755   1.1     kenh 	/* No arguments. */
    756   1.1     kenh 	if (argc != 0)
    757   1.5    soren 		usage();
    758   1.1     kenh 
    759   1.1     kenh 	memset(&req, 0, sizeof(req));
    760   1.1     kenh 
    761   1.1     kenh 	if (strcmp(cmdname, "idle") == 0)
    762   1.1     kenh 		req.command = WDCC_IDLE_IMMED;
    763   1.1     kenh 	else if (strcmp(cmdname, "standby") == 0)
    764   1.1     kenh 		req.command = WDCC_STANDBY_IMMED;
    765   1.1     kenh 	else
    766   1.1     kenh 		req.command = WDCC_SLEEP;
    767   1.1     kenh 
    768   1.1     kenh 	req.timeout = 1000;
    769   1.1     kenh 
    770   1.1     kenh 	ata_command(&req);
    771   1.1     kenh 
    772   1.1     kenh 	return;
    773   1.1     kenh }
    774   1.1     kenh 
    775   1.1     kenh /*
    776   1.1     kenh  * Set the idle timer on the disk.  Set it for either idle mode or
    777   1.1     kenh  * standby mode, depending on how we were invoked.
    778   1.1     kenh  */
    779   1.1     kenh 
    780   1.1     kenh void
    781  1.13   simonb device_setidle(int argc, char *argv[])
    782   1.1     kenh {
    783   1.1     kenh 	unsigned long idle;
    784   1.1     kenh 	struct atareq req;
    785   1.1     kenh 	char *end;
    786   1.1     kenh 
    787   1.1     kenh 	/* Only one argument */
    788   1.1     kenh 	if (argc != 1)
    789   1.5    soren 		usage();
    790   1.1     kenh 
    791   1.1     kenh 	idle = strtoul(argv[0], &end, 0);
    792   1.1     kenh 
    793   1.1     kenh 	if (*end != '\0') {
    794   1.1     kenh 		fprintf(stderr, "Invalid idle time: \"%s\"\n", argv[0]);
    795   1.1     kenh 		exit(1);
    796   1.1     kenh 	}
    797   1.1     kenh 
    798   1.1     kenh 	if (idle > 19800) {
    799   1.1     kenh 		fprintf(stderr, "Idle time has a maximum value of 5.5 "
    800   1.1     kenh 			"hours\n");
    801   1.1     kenh 		exit(1);
    802   1.1     kenh 	}
    803   1.1     kenh 
    804   1.1     kenh 	if (idle != 0 && idle < 5) {
    805   1.1     kenh 		fprintf(stderr, "Idle timer must be at least 5 seconds\n");
    806   1.1     kenh 		exit(1);
    807   1.1     kenh 	}
    808   1.1     kenh 
    809   1.1     kenh 	memset(&req, 0, sizeof(req));
    810   1.1     kenh 
    811   1.1     kenh 	if (idle <= 240*5)
    812   1.1     kenh 		req.sec_count = idle / 5;
    813   1.1     kenh 	else
    814   1.1     kenh 		req.sec_count = idle / (30*60) + 240;
    815   1.1     kenh 
    816   1.1     kenh 	req.command = cmdname[3] == 's' ? WDCC_STANDBY : WDCC_IDLE;
    817   1.1     kenh 	req.timeout = 1000;
    818   1.1     kenh 
    819   1.1     kenh 	ata_command(&req);
    820   1.1     kenh 
    821   1.1     kenh 	return;
    822   1.3     kenh }
    823   1.3     kenh 
    824   1.3     kenh /*
    825   1.3     kenh  * Query the device for the current power mode
    826   1.3     kenh  */
    827   1.3     kenh 
    828   1.3     kenh void
    829  1.13   simonb device_checkpower(int argc, char *argv[])
    830   1.3     kenh {
    831   1.3     kenh 	struct atareq req;
    832   1.3     kenh 
    833   1.3     kenh 	/* No arguments. */
    834   1.3     kenh 	if (argc != 0)
    835   1.5    soren 		usage();
    836   1.3     kenh 
    837   1.3     kenh 	memset(&req, 0, sizeof(req));
    838   1.3     kenh 
    839   1.3     kenh 	req.command = WDCC_CHECK_PWR;
    840   1.3     kenh 	req.timeout = 1000;
    841   1.3     kenh 	req.flags = ATACMD_READREG;
    842   1.3     kenh 
    843   1.3     kenh 	ata_command(&req);
    844   1.3     kenh 
    845   1.3     kenh 	printf("Current power status: ");
    846   1.3     kenh 
    847   1.3     kenh 	switch (req.sec_count) {
    848   1.3     kenh 	case 0x00:
    849   1.3     kenh 		printf("Standby mode\n");
    850   1.3     kenh 		break;
    851   1.3     kenh 	case 0x80:
    852   1.3     kenh 		printf("Idle mode\n");
    853   1.3     kenh 		break;
    854   1.3     kenh 	case 0xff:
    855   1.3     kenh 		printf("Active mode\n");
    856   1.3     kenh 		break;
    857   1.3     kenh 	default:
    858   1.3     kenh 		printf("Unknown power code (%02x)\n", req.sec_count);
    859   1.3     kenh 	}
    860   1.3     kenh 
    861  1.15    soren 	return;
    862  1.15    soren }
    863  1.15    soren 
    864  1.15    soren /*
    865  1.15    soren  * device_smart:
    866  1.15    soren  *
    867  1.15    soren  *	Display SMART status
    868  1.15    soren  */
    869  1.15    soren void
    870  1.15    soren device_smart(int argc, char *argv[])
    871  1.15    soren {
    872  1.15    soren 	struct atareq req;
    873  1.15    soren 	unsigned char inbuf[DEV_BSIZE];
    874  1.15    soren 	unsigned char inbuf2[DEV_BSIZE];
    875  1.15    soren 
    876  1.15    soren 	/* Only one argument */
    877  1.15    soren 	if (argc != 1)
    878  1.15    soren 		usage();
    879  1.15    soren 
    880  1.15    soren 	if (strcmp(argv[0], "enable") == 0) {
    881  1.20  mycroft 		memset(&req, 0, sizeof(req));
    882  1.15    soren 
    883  1.20  mycroft 		req.features = WDSM_ENABLE_OPS;
    884  1.20  mycroft 		req.command = WDCC_SMART;
    885  1.20  mycroft 		req.cylinder = htole16(WDSMART_CYL);
    886  1.20  mycroft 		req.timeout = 1000;
    887  1.15    soren 
    888  1.20  mycroft 		ata_command(&req);
    889  1.15    soren 
    890  1.20  mycroft 		is_smart();
    891  1.15    soren 	} else if (strcmp(argv[0], "disable") == 0) {
    892  1.20  mycroft 		memset(&req, 0, sizeof(req));
    893  1.15    soren 
    894  1.20  mycroft 		req.features = WDSM_DISABLE_OPS;
    895  1.20  mycroft 		req.command = WDCC_SMART;
    896  1.20  mycroft 		req.cylinder = htole16(WDSMART_CYL);
    897  1.20  mycroft 		req.timeout = 1000;
    898  1.15    soren 
    899  1.20  mycroft 		ata_command(&req);
    900  1.15    soren 
    901  1.20  mycroft 		is_smart();
    902  1.16    soren 	} else if (strcmp(argv[0], "status") == 0) {
    903  1.24      lha 		if (!is_smart()) {
    904  1.24      lha 			fprintf(stderr, "SMART not supported\n");
    905  1.24      lha 			return;
    906  1.24      lha 		}
    907  1.24      lha 
    908  1.15    soren 			memset(&inbuf, 0, sizeof(inbuf));
    909  1.15    soren 			memset(&req, 0, sizeof(req));
    910  1.15    soren 
    911  1.15    soren 			req.features = WDSM_STATUS;
    912  1.15    soren 			req.command = WDCC_SMART;
    913  1.15    soren 			req.cylinder = htole16(WDSMART_CYL);
    914  1.15    soren 			req.timeout = 1000;
    915  1.15    soren 
    916  1.15    soren 			ata_command(&req);
    917  1.15    soren 
    918  1.15    soren 			if (req.cylinder != htole16(WDSMART_CYL)) {
    919  1.15    soren 				fprintf(stderr, "Threshold exceeds condition\n");
    920  1.15    soren 			}
    921  1.15    soren 
    922  1.15    soren 			/* WDSM_RD_DATA and WDSM_RD_THRESHOLDS are optional
    923  1.15    soren 			 * features, the following ata_command()'s may error
    924  1.15    soren 			 * and exit().
    925  1.15    soren 			 */
    926  1.15    soren 
    927  1.15    soren 			memset(&inbuf, 0, sizeof(inbuf));
    928  1.15    soren 			memset(&req, 0, sizeof(req));
    929  1.15    soren 
    930  1.15    soren 			req.flags = ATACMD_READ;
    931  1.15    soren 			req.features = WDSM_RD_DATA;
    932  1.15    soren 			req.command = WDCC_SMART;
    933  1.15    soren 			req.databuf = (caddr_t) inbuf;
    934  1.15    soren 			req.datalen = sizeof(inbuf);
    935  1.15    soren 			req.cylinder = htole16(WDSMART_CYL);
    936  1.15    soren 			req.timeout = 1000;
    937  1.15    soren 
    938  1.15    soren 			ata_command(&req);
    939  1.15    soren 
    940  1.15    soren 			memset(&inbuf2, 0, sizeof(inbuf2));
    941  1.15    soren 			memset(&req, 0, sizeof(req));
    942  1.15    soren 
    943  1.15    soren 			req.flags = ATACMD_READ;
    944  1.15    soren 			req.features = WDSM_RD_THRESHOLDS;
    945  1.15    soren 			req.command = WDCC_SMART;
    946  1.15    soren 			req.databuf = (caddr_t) inbuf2;
    947  1.15    soren 			req.datalen = sizeof(inbuf2);
    948  1.15    soren 			req.cylinder = htole16(WDSMART_CYL);
    949  1.15    soren 			req.timeout = 1000;
    950  1.15    soren 
    951  1.15    soren 			ata_command(&req);
    952  1.15    soren 
    953  1.15    soren 			print_smart_status(inbuf, inbuf2);
    954  1.24      lha 
    955  1.24      lha 	} else if (strcmp(argv[0], "selftest-log") == 0) {
    956  1.24      lha 		if (!is_smart()) {
    957  1.15    soren 			fprintf(stderr, "SMART not supported\n");
    958  1.24      lha 			return;
    959  1.15    soren 		}
    960  1.24      lha 
    961  1.24      lha 		memset(&inbuf, 0, sizeof(inbuf));
    962  1.24      lha 		memset(&req, 0, sizeof(req));
    963  1.24      lha 
    964  1.24      lha 		req.flags = ATACMD_READ;
    965  1.24      lha 		req.features = WDSM_RD_LOG;
    966  1.24      lha 		req.sec_count = 1;
    967  1.24      lha 		req.sec_num = 6;
    968  1.24      lha 		req.command = WDCC_SMART;
    969  1.24      lha 		req.databuf = (caddr_t) inbuf;
    970  1.24      lha 		req.datalen = sizeof(inbuf);
    971  1.24      lha 		req.cylinder = htole16(WDSMART_CYL);
    972  1.24      lha 		req.timeout = 1000;
    973  1.24      lha 
    974  1.24      lha 		ata_command(&req);
    975  1.24      lha 
    976  1.24      lha 		print_selftest(inbuf);
    977  1.24      lha 
    978  1.15    soren 	} else {
    979  1.15    soren 		usage();
    980  1.15    soren 	}
    981   1.3     kenh 	return;
    982   1.1     kenh }
    983  1.30   bouyer 
    984  1.30   bouyer /*
    985  1.30   bouyer  * bus_reset:
    986  1.30   bouyer  *	Reset an ATA bus (will reset all devices on the bus)
    987  1.30   bouyer  */
    988  1.30   bouyer void
    989  1.30   bouyer bus_reset(int argc, char *argv[])
    990  1.30   bouyer {
    991  1.30   bouyer 	int error;
    992  1.30   bouyer 
    993  1.30   bouyer 	/* no args */
    994  1.30   bouyer 	if (argc != 0)
    995  1.30   bouyer 		usage();
    996  1.30   bouyer 
    997  1.30   bouyer 	error = ioctl(fd, ATABUSIORESET, NULL);
    998  1.30   bouyer 
    999  1.30   bouyer 	if (error == -1)
   1000  1.30   bouyer 		err(1, "ATABUSIORESET failed");
   1001  1.30   bouyer }
   1002