2 * Copyright (c) 2016 Netflix, Inc
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
30 #include <sys/param.h>
31 #include <sys/ioccom.h>
42 #include "nvmecontrol.h"
44 _Static_assert(sizeof(struct nvme_power_state
) == 256 / NBBY
,
45 "nvme_power_state size wrong");
50 fprintf(stderr
, "usage:\n");
51 fprintf(stderr
, POWER_USAGE
);
56 power_list_one(int i
, struct nvme_power_state
*nps
)
58 int mpower
, apower
, ipower
;
69 printf("%2d: %2d.%04dW%c %3d.%03dms %3d.%03dms %2d %2d %2d %2d %2d.%04dW %2d.%04dW %d\n",
70 i
, mpower
/ 10000, mpower
% 10000,
71 nps
->nops
? '*' : ' ', nps
->enlat
/ 1000, nps
->enlat
% 1000,
72 nps
->exlat
/ 1000, nps
->exlat
% 1000, nps
->rrt
, nps
->rrl
,
73 nps
->rwt
, nps
->rwl
, ipower
/ 10000, ipower
% 10000,
74 apower
/ 10000, apower
% 10000, nps
->apw
);
78 power_list(struct nvme_controller_data
*cdata
)
82 printf("\nPower States Supported: %d\n\n", cdata
->npss
+ 1);
83 printf(" # Max pwr Enter Lat Exit Lat RT RL WT WL Idle Pwr Act Pwr Workloadd\n");
84 printf("-- -------- --------- --------- -- -- -- -- -------- -------- --\n");
85 for (i
= 0; i
<= cdata
->npss
; i
++)
86 power_list_one(i
, &cdata
->power_state
[i
]);
90 power_set(int fd
, int power_val
, int workload
, int perm
)
92 struct nvme_pt_command pt
;
95 p
= perm
? (1u << 31) : 0;
96 memset(&pt
, 0, sizeof(pt
));
97 pt
.cmd
.opc
= NVME_OPC_SET_FEATURES
;
98 pt
.cmd
.cdw10
= NVME_FEAT_POWER_MANAGEMENT
| p
;
99 pt
.cmd
.cdw11
= power_val
| (workload
<< 5);
101 if (ioctl(fd
, NVME_PASSTHROUGH_CMD
, &pt
) < 0)
102 err(1, "set feature power mgmt request failed");
104 if (nvme_completion_is_error(&pt
.cpl
))
105 errx(1, "set feature power mgmt request returned error");
111 struct nvme_pt_command pt
;
113 memset(&pt
, 0, sizeof(pt
));
114 pt
.cmd
.opc
= NVME_OPC_GET_FEATURES
;
115 pt
.cmd
.cdw10
= NVME_FEAT_POWER_MANAGEMENT
;
117 if (ioctl(fd
, NVME_PASSTHROUGH_CMD
, &pt
) < 0)
118 err(1, "set feature power mgmt request failed");
120 if (nvme_completion_is_error(&pt
.cpl
))
121 errx(1, "set feature power mgmt request returned error");
123 printf("Current Power Mode is %d\n", pt
.cpl
.cdw0
);
127 power(int argc
, char *argv
[])
129 struct nvme_controller_data cdata
;
130 int ch
, listflag
= 0, powerflag
= 0, power_val
= 0, fd
;
134 while ((ch
= getopt(argc
, argv
, "lp:w:")) != -1) {
141 power_val
= strtol(optarg
, &end
, 0);
143 fprintf(stderr
, "Invalid power state number: %s\n", optarg
);
148 workload
= strtol(optarg
, &end
, 0);
150 fprintf(stderr
, "Invalid workload hint: %s\n", optarg
);
159 /* Check that a controller was specified. */
163 if (listflag
&& powerflag
) {
164 fprintf(stderr
, "Can't set power and list power states\n");
168 open_dev(argv
[optind
], &fd
, 1, 1);
169 read_controller_data(fd
, &cdata
);
177 power_set(fd
, power_val
, workload
, 0);