2016-01-30 22:48:06 +00:00
|
|
|
/*-
|
2019-02-04 21:28:25 +00:00
|
|
|
* Copyright (c) 2016 Netflix, Inc.
|
2016-01-30 22:48:06 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioccom.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <fcntl.h>
|
2019-07-16 17:24:03 +00:00
|
|
|
#include <stdbool.h>
|
2016-01-30 22:48:06 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2020-11-13 02:05:45 +00:00
|
|
|
#include <sysexits.h>
|
2016-01-30 22:48:06 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "nvmecontrol.h"
|
|
|
|
|
|
|
|
_Static_assert(sizeof(struct nvme_power_state) == 256 / NBBY,
|
|
|
|
"nvme_power_state size wrong");
|
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
#define POWER_NONE 0xffffffffu
|
|
|
|
|
|
|
|
static struct options {
|
|
|
|
bool list;
|
|
|
|
uint32_t power;
|
|
|
|
uint32_t workload;
|
|
|
|
const char *dev;
|
|
|
|
} opt = {
|
|
|
|
.list = false,
|
|
|
|
.power = POWER_NONE,
|
|
|
|
.workload = 0,
|
|
|
|
.dev = NULL,
|
|
|
|
};
|
2018-12-02 23:10:55 +00:00
|
|
|
|
2016-01-30 22:48:06 +00:00
|
|
|
static void
|
|
|
|
power_list_one(int i, struct nvme_power_state *nps)
|
|
|
|
{
|
|
|
|
int mpower, apower, ipower;
|
2018-02-22 13:32:31 +00:00
|
|
|
uint8_t mps, nops, aps, apw;
|
|
|
|
|
|
|
|
mps = (nps->mps_nops >> NVME_PWR_ST_MPS_SHIFT) &
|
|
|
|
NVME_PWR_ST_MPS_MASK;
|
|
|
|
nops = (nps->mps_nops >> NVME_PWR_ST_NOPS_SHIFT) &
|
|
|
|
NVME_PWR_ST_NOPS_MASK;
|
|
|
|
apw = (nps->apw_aps >> NVME_PWR_ST_APW_SHIFT) &
|
|
|
|
NVME_PWR_ST_APW_MASK;
|
|
|
|
aps = (nps->apw_aps >> NVME_PWR_ST_APS_SHIFT) &
|
|
|
|
NVME_PWR_ST_APS_MASK;
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
mpower = nps->mp;
|
2018-02-22 13:32:31 +00:00
|
|
|
if (mps == 0)
|
2016-01-30 22:48:06 +00:00
|
|
|
mpower *= 100;
|
|
|
|
ipower = nps->idlp;
|
|
|
|
if (nps->ips == 1)
|
|
|
|
ipower *= 100;
|
|
|
|
apower = nps->actp;
|
2018-02-22 13:32:31 +00:00
|
|
|
if (aps == 1)
|
2016-01-30 22:48:06 +00:00
|
|
|
apower *= 100;
|
|
|
|
printf("%2d: %2d.%04dW%c %3d.%03dms %3d.%03dms %2d %2d %2d %2d %2d.%04dW %2d.%04dW %d\n",
|
|
|
|
i, mpower / 10000, mpower % 10000,
|
2018-02-22 13:32:31 +00:00
|
|
|
nops ? '*' : ' ', nps->enlat / 1000, nps->enlat % 1000,
|
2016-01-30 22:48:06 +00:00
|
|
|
nps->exlat / 1000, nps->exlat % 1000, nps->rrt, nps->rrl,
|
|
|
|
nps->rwt, nps->rwl, ipower / 10000, ipower % 10000,
|
2018-02-22 13:32:31 +00:00
|
|
|
apower / 10000, apower % 10000, apw);
|
2016-01-30 22:48:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
power_list(struct nvme_controller_data *cdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("\nPower States Supported: %d\n\n", cdata->npss + 1);
|
|
|
|
printf(" # Max pwr Enter Lat Exit Lat RT RL WT WL Idle Pwr Act Pwr Workloadd\n");
|
|
|
|
printf("-- -------- --------- --------- -- -- -- -- -------- -------- --\n");
|
|
|
|
for (i = 0; i <= cdata->npss; i++)
|
|
|
|
power_list_one(i, &cdata->power_state[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-03-11 17:25:18 +00:00
|
|
|
power_set(int fd, int power_val, int workload, int perm)
|
2016-01-30 22:48:06 +00:00
|
|
|
{
|
|
|
|
struct nvme_pt_command pt;
|
|
|
|
uint32_t p;
|
|
|
|
|
|
|
|
p = perm ? (1u << 31) : 0;
|
|
|
|
memset(&pt, 0, sizeof(pt));
|
2018-08-22 04:29:24 +00:00
|
|
|
pt.cmd.opc = NVME_OPC_SET_FEATURES;
|
2018-02-22 13:32:31 +00:00
|
|
|
pt.cmd.cdw10 = htole32(NVME_FEAT_POWER_MANAGEMENT | p);
|
|
|
|
pt.cmd.cdw11 = htole32(power_val | (workload << 5));
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
if (ioctl(fd, NVME_PASSTHROUGH_CMD, &pt) < 0)
|
2020-11-13 02:05:45 +00:00
|
|
|
err(EX_IOERR, "set feature power mgmt request failed");
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
if (nvme_completion_is_error(&pt.cpl))
|
2020-11-13 02:05:45 +00:00
|
|
|
errx(EX_IOERR, "set feature power mgmt request returned error");
|
2016-01-30 22:48:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
power_show(int fd)
|
|
|
|
{
|
|
|
|
struct nvme_pt_command pt;
|
|
|
|
|
|
|
|
memset(&pt, 0, sizeof(pt));
|
2018-08-22 04:29:24 +00:00
|
|
|
pt.cmd.opc = NVME_OPC_GET_FEATURES;
|
2018-02-22 13:32:31 +00:00
|
|
|
pt.cmd.cdw10 = htole32(NVME_FEAT_POWER_MANAGEMENT);
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
if (ioctl(fd, NVME_PASSTHROUGH_CMD, &pt) < 0)
|
2020-11-13 02:05:45 +00:00
|
|
|
err(EX_IOERR, "set feature power mgmt request failed");
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
if (nvme_completion_is_error(&pt.cpl))
|
2020-11-13 02:05:45 +00:00
|
|
|
errx(EX_IOERR, "set feature power mgmt request returned error");
|
2016-01-30 22:48:06 +00:00
|
|
|
|
|
|
|
printf("Current Power Mode is %d\n", pt.cpl.cdw0);
|
|
|
|
}
|
|
|
|
|
2018-12-02 23:10:55 +00:00
|
|
|
static void
|
2019-07-16 17:24:03 +00:00
|
|
|
power(const struct cmd *f, int argc, char *argv[])
|
2016-01-30 22:48:06 +00:00
|
|
|
{
|
|
|
|
struct nvme_controller_data cdata;
|
2019-07-16 17:24:03 +00:00
|
|
|
int fd;
|
2020-04-20 14:54:41 +00:00
|
|
|
char *path;
|
|
|
|
uint32_t nsid;
|
2016-01-30 22:48:06 +00:00
|
|
|
|
Fix various Coverity-detected errors in nvmecontrol
This fixes several Coverity-detected errors in nvmecontrol. While in
here, a couple additional errors with shift/mask confusion that were
not diagnosed by Coverity are also fixed.
CIDs addressed: 1040299, 1040300, 1403972, 1403973, 1403985, 1403988,
1403990, 1404374, 1404427, 1404469, 1404510, 1404534, 1418118
CID 1403657 (resource leak of shared library handle) was marked
"intentional" in the Coverity scan database.
Reviewed by: vangyzen, robert.herndon_dell.com
Reviewed by: daniel.william.ryan_gmail.com (earlier version)
Reviewed by: rramsden_isilon.com (earlier version), imp
MFC after: 5 days
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D24203
2020-04-02 13:52:54 +00:00
|
|
|
if (arg_parse(argc, argv, f))
|
|
|
|
return;
|
2016-01-30 22:48:06 +00:00
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
if (opt.list && opt.power != POWER_NONE) {
|
2016-01-30 22:48:06 +00:00
|
|
|
fprintf(stderr, "Can't set power and list power states\n");
|
2019-07-16 17:24:03 +00:00
|
|
|
arg_help(argc, argv, f);
|
2016-01-30 22:48:06 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
open_dev(opt.dev, &fd, 1, 1);
|
2020-04-20 14:54:41 +00:00
|
|
|
get_nsid(fd, &path, &nsid);
|
|
|
|
if (nsid != 0) {
|
|
|
|
close(fd);
|
|
|
|
open_dev(path, &fd, 1, 1);
|
|
|
|
}
|
|
|
|
free(path);
|
2016-01-30 22:48:06 +00:00
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
if (opt.list) {
|
2020-11-13 02:05:45 +00:00
|
|
|
if (read_controller_data(fd, &cdata))
|
|
|
|
errx(EX_IOERR, "Identify request failed");
|
2016-01-30 22:48:06 +00:00
|
|
|
power_list(&cdata);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
if (opt.power != POWER_NONE) {
|
|
|
|
power_set(fd, opt.power, opt.workload, 0);
|
2016-01-30 22:48:06 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
power_show(fd);
|
|
|
|
|
|
|
|
out:
|
|
|
|
close(fd);
|
|
|
|
exit(0);
|
|
|
|
}
|
2018-12-02 23:10:55 +00:00
|
|
|
|
2019-07-16 17:24:03 +00:00
|
|
|
static const struct opts power_opts[] = {
|
|
|
|
#define OPT(l, s, t, opt, addr, desc) { l, s, t, &opt.addr, desc }
|
|
|
|
OPT("list", 'l', arg_none, opt, list,
|
|
|
|
"List the valid power states"),
|
|
|
|
OPT("power", 'p', arg_uint32, opt, power,
|
|
|
|
"Set the power state"),
|
|
|
|
OPT("workload", 'w', arg_uint32, opt, workload,
|
|
|
|
"Set the workload"),
|
|
|
|
{ NULL, 0, arg_none, NULL, NULL }
|
|
|
|
};
|
|
|
|
#undef OPT
|
|
|
|
|
|
|
|
static const struct args power_args[] = {
|
2020-04-20 14:54:41 +00:00
|
|
|
{ arg_string, &opt.dev, "controller-id|namespace-id" },
|
2019-07-16 17:24:03 +00:00
|
|
|
{ arg_none, NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct cmd power_cmd = {
|
|
|
|
.name = "power",
|
|
|
|
.fn = power,
|
|
|
|
.descr = "Manage power states for the drive",
|
|
|
|
.ctx_size = sizeof(opt),
|
|
|
|
.opts = power_opts,
|
|
|
|
.args = power_args,
|
|
|
|
};
|
|
|
|
|
|
|
|
CMD_COMMAND(power_cmd);
|