2012-09-17 19:23:01 +00:00
|
|
|
/*-
|
2017-11-27 14:52:40 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2016-01-07 20:32:04 +00:00
|
|
|
* Copyright (C) 2012-2016 Intel Corporation
|
2012-09-17 19:23:01 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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$");
|
|
|
|
|
2016-06-10 06:04:53 +00:00
|
|
|
#include "opt_cam.h"
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
#include <sys/param.h>
|
2013-04-12 17:52:17 +00:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
2012-09-17 19:23:01 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/ioccom.h>
|
2013-04-12 17:52:17 +00:00
|
|
|
#include <sys/proc.h>
|
2012-09-17 19:23:01 +00:00
|
|
|
#include <sys/smp.h>
|
2013-04-12 17:52:17 +00:00
|
|
|
#include <sys/uio.h>
|
2018-02-22 13:32:31 +00:00
|
|
|
#include <sys/endian.h>
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
|
|
|
|
#include "nvme_private.h"
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
#define B4_CHK_RDY_DELAY_MS 2300 /* work around controller bug */
|
2017-12-18 18:38:00 +00:00
|
|
|
|
2013-03-26 18:37:36 +00:00
|
|
|
static void nvme_ctrlr_construct_and_submit_aer(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_async_event_request *aer);
|
2016-01-07 16:12:42 +00:00
|
|
|
static void nvme_ctrlr_setup_interrupts(struct nvme_controller *ctrlr);
|
2013-03-26 18:37:36 +00:00
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_allocate_bar(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
|
2015-04-08 21:52:06 +00:00
|
|
|
ctrlr->resource_id = PCIR_BAR(0);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-02-19 03:37:56 +00:00
|
|
|
ctrlr->resource = bus_alloc_resource_any(ctrlr->dev, SYS_RES_MEMORY,
|
|
|
|
&ctrlr->resource_id, RF_ACTIVE);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
if(ctrlr->resource == NULL) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "unable to allocate pci resource\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctrlr->bus_tag = rman_get_bustag(ctrlr->resource);
|
|
|
|
ctrlr->bus_handle = rman_get_bushandle(ctrlr->resource);
|
|
|
|
ctrlr->regs = (struct nvme_registers *)ctrlr->bus_handle;
|
|
|
|
|
2012-12-18 23:27:18 +00:00
|
|
|
/*
|
|
|
|
* The NVMe spec allows for the MSI-X table to be placed behind
|
|
|
|
* BAR 4/5, separate from the control/doorbell registers. Always
|
|
|
|
* try to map this bar, because it must be mapped prior to calling
|
|
|
|
* pci_alloc_msix(). If the table isn't behind BAR 4/5,
|
|
|
|
* bus_alloc_resource() will just return NULL which is OK.
|
|
|
|
*/
|
|
|
|
ctrlr->bar4_resource_id = PCIR_BAR(4);
|
2016-02-19 03:37:56 +00:00
|
|
|
ctrlr->bar4_resource = bus_alloc_resource_any(ctrlr->dev, SYS_RES_MEMORY,
|
|
|
|
&ctrlr->bar4_resource_id, RF_ACTIVE);
|
2012-12-18 23:27:18 +00:00
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2016-11-08 00:24:49 +00:00
|
|
|
static int
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_construct_admin_qpair(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
struct nvme_qpair *qpair;
|
|
|
|
uint32_t num_entries;
|
2016-11-08 00:24:49 +00:00
|
|
|
int error;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
qpair = &ctrlr->adminq;
|
|
|
|
|
|
|
|
num_entries = NVME_ADMIN_ENTRIES;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.admin_entries", &num_entries);
|
|
|
|
/*
|
|
|
|
* If admin_entries was overridden to an invalid value, revert it
|
|
|
|
* back to our default value.
|
|
|
|
*/
|
|
|
|
if (num_entries < NVME_MIN_ADMIN_ENTRIES ||
|
|
|
|
num_entries > NVME_MAX_ADMIN_ENTRIES) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "invalid hw.nvme.admin_entries=%d "
|
|
|
|
"specified\n", num_entries);
|
2012-09-17 19:23:01 +00:00
|
|
|
num_entries = NVME_ADMIN_ENTRIES;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The admin queue's max xfer size is treated differently than the
|
|
|
|
* max I/O xfer size. 16KB is sufficient here - maybe even less?
|
|
|
|
*/
|
2016-11-08 00:24:49 +00:00
|
|
|
error = nvme_qpair_construct(qpair,
|
|
|
|
0, /* qpair ID */
|
|
|
|
0, /* vector */
|
|
|
|
num_entries,
|
|
|
|
NVME_ADMIN_TRACKERS,
|
|
|
|
ctrlr);
|
|
|
|
return (error);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nvme_ctrlr_construct_io_qpairs(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
struct nvme_qpair *qpair;
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t cap_lo;
|
|
|
|
uint16_t mqes;
|
2016-11-08 00:24:49 +00:00
|
|
|
int i, error, num_entries, num_trackers;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
num_entries = NVME_IO_ENTRIES;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.io_entries", &num_entries);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NVMe spec sets a hard limit of 64K max entries, but
|
|
|
|
* devices may specify a smaller limit, so we need to check
|
|
|
|
* the MQES field in the capabilities register.
|
|
|
|
*/
|
2018-02-22 13:32:31 +00:00
|
|
|
cap_lo = nvme_mmio_read_4(ctrlr, cap_lo);
|
|
|
|
mqes = (cap_lo >> NVME_CAP_LO_REG_MQES_SHIFT) & NVME_CAP_LO_REG_MQES_MASK;
|
|
|
|
num_entries = min(num_entries, mqes + 1);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2012-10-18 00:44:39 +00:00
|
|
|
num_trackers = NVME_IO_TRACKERS;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.io_trackers", &num_trackers);
|
|
|
|
|
|
|
|
num_trackers = max(num_trackers, NVME_MIN_IO_TRACKERS);
|
|
|
|
num_trackers = min(num_trackers, NVME_MAX_IO_TRACKERS);
|
|
|
|
/*
|
|
|
|
* No need to have more trackers than entries in the submit queue.
|
|
|
|
* Note also that for a queue size of N, we can only have (N-1)
|
|
|
|
* commands outstanding, hence the "-1" here.
|
|
|
|
*/
|
|
|
|
num_trackers = min(num_trackers, (num_entries-1));
|
|
|
|
|
2017-08-28 23:54:20 +00:00
|
|
|
/*
|
|
|
|
* Our best estimate for the maximum number of I/Os that we should
|
|
|
|
* noramlly have in flight at one time. This should be viewed as a hint,
|
|
|
|
* not a hard limit and will need to be revisitted when the upper layers
|
|
|
|
* of the storage system grows multi-queue support.
|
|
|
|
*/
|
2017-09-20 21:42:25 +00:00
|
|
|
ctrlr->max_hw_pend_io = num_trackers * ctrlr->num_io_queues * 3 / 4;
|
2017-08-28 23:54:20 +00:00
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* This was calculated previously when setting up interrupts, but
|
|
|
|
* a controller could theoretically support fewer I/O queues than
|
|
|
|
* MSI-X vectors. So calculate again here just to be safe.
|
|
|
|
*/
|
2016-01-07 20:35:26 +00:00
|
|
|
ctrlr->num_cpus_per_ioq = howmany(mp_ncpus, ctrlr->num_io_queues);
|
2016-01-07 16:18:32 +00:00
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
ctrlr->ioq = malloc(ctrlr->num_io_queues * sizeof(struct nvme_qpair),
|
2013-03-26 22:11:34 +00:00
|
|
|
M_NVME, M_ZERO | M_WAITOK);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++) {
|
|
|
|
qpair = &ctrlr->ioq[i];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Admin queue has ID=0. IO queues start at ID=1 -
|
|
|
|
* hence the 'i+1' here.
|
|
|
|
*
|
|
|
|
* For I/O queues, use the controller-wide max_xfer_size
|
|
|
|
* calculated in nvme_attach().
|
|
|
|
*/
|
2016-11-08 00:24:49 +00:00
|
|
|
error = nvme_qpair_construct(qpair,
|
2012-09-17 19:23:01 +00:00
|
|
|
i+1, /* qpair ID */
|
|
|
|
ctrlr->msix_enabled ? i+1 : 0, /* vector */
|
|
|
|
num_entries,
|
2012-10-18 00:44:39 +00:00
|
|
|
num_trackers,
|
2012-09-17 19:23:01 +00:00
|
|
|
ctrlr);
|
2016-11-08 00:24:49 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* Do not bother binding interrupts if we only have one I/O
|
|
|
|
* interrupt thread for this controller.
|
|
|
|
*/
|
2016-01-07 16:09:56 +00:00
|
|
|
if (ctrlr->num_io_queues > 1)
|
2016-01-07 16:18:32 +00:00
|
|
|
bus_bind_intr(ctrlr->dev, qpair->res,
|
|
|
|
i * ctrlr->num_cpus_per_ioq);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:58:38 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_fail(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ctrlr->is_failed = TRUE;
|
|
|
|
nvme_qpair_fail(&ctrlr->adminq);
|
2017-03-07 23:06:41 +00:00
|
|
|
if (ctrlr->ioq != NULL) {
|
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++)
|
|
|
|
nvme_qpair_fail(&ctrlr->ioq[i]);
|
|
|
|
}
|
2013-03-26 21:58:38 +00:00
|
|
|
nvme_notify_fail_consumers(ctrlr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nvme_ctrlr_post_failed_request(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_request *req)
|
|
|
|
{
|
|
|
|
|
2013-04-12 17:36:48 +00:00
|
|
|
mtx_lock(&ctrlr->lock);
|
2013-03-26 21:58:38 +00:00
|
|
|
STAILQ_INSERT_TAIL(&ctrlr->fail_req, req, stailq);
|
2013-04-12 17:36:48 +00:00
|
|
|
mtx_unlock(&ctrlr->lock);
|
2013-03-26 21:58:38 +00:00
|
|
|
taskqueue_enqueue(ctrlr->taskqueue, &ctrlr->fail_req_task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvme_ctrlr_fail_req_task(void *arg, int pending)
|
|
|
|
{
|
|
|
|
struct nvme_controller *ctrlr = arg;
|
|
|
|
struct nvme_request *req;
|
|
|
|
|
2013-04-12 17:36:48 +00:00
|
|
|
mtx_lock(&ctrlr->lock);
|
2018-05-02 20:13:03 +00:00
|
|
|
while ((req = STAILQ_FIRST(&ctrlr->fail_req)) != NULL) {
|
2013-03-26 21:58:38 +00:00
|
|
|
STAILQ_REMOVE_HEAD(&ctrlr->fail_req, stailq);
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx_unlock(&ctrlr->lock);
|
2013-03-26 21:58:38 +00:00
|
|
|
nvme_qpair_manual_complete_request(req->qpair, req,
|
|
|
|
NVME_SCT_GENERIC, NVME_SC_ABORTED_BY_REQUEST, TRUE);
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx_lock(&ctrlr->lock);
|
2013-03-26 21:58:38 +00:00
|
|
|
}
|
2013-04-12 17:36:48 +00:00
|
|
|
mtx_unlock(&ctrlr->lock);
|
2013-03-26 21:58:38 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static int
|
2015-07-23 15:50:39 +00:00
|
|
|
nvme_ctrlr_wait_for_ready(struct nvme_controller *ctrlr, int desired_val)
|
2012-09-17 19:23:01 +00:00
|
|
|
{
|
|
|
|
int ms_waited;
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t csts;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
ms_waited = 0;
|
2018-02-22 13:32:31 +00:00
|
|
|
while (((csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK) != desired_val) {
|
2012-09-17 19:23:01 +00:00
|
|
|
if (ms_waited++ > ctrlr->ready_timeout_in_ms) {
|
2015-07-23 15:50:39 +00:00
|
|
|
nvme_printf(ctrlr, "controller ready did not become %d "
|
|
|
|
"within %d ms\n", desired_val, ctrlr->ready_timeout_in_ms);
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
2017-12-18 18:38:00 +00:00
|
|
|
DELAY(1000);
|
2018-02-22 13:32:31 +00:00
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2017-12-18 18:38:00 +00:00
|
|
|
static int
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_disable(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t cc;
|
|
|
|
uint32_t csts;
|
|
|
|
uint8_t en, rdy;
|
2017-12-18 18:38:00 +00:00
|
|
|
int err;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
cc = nvme_mmio_read_4(ctrlr, cc);
|
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
|
|
|
|
|
|
|
en = (cc >> NVME_CC_REG_EN_SHIFT) & NVME_CC_REG_EN_MASK;
|
|
|
|
rdy = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2017-12-18 18:38:00 +00:00
|
|
|
/*
|
|
|
|
* Per 3.1.5 in NVME 1.3 spec, transitioning CC.EN from 0 to 1
|
|
|
|
* when CSTS.RDY is 1 or transitioning CC.EN from 1 to 0 when
|
|
|
|
* CSTS.RDY is 0 "has undefined results" So make sure that CSTS.RDY
|
|
|
|
* isn't the desired value. Short circuit if we're already disabled.
|
|
|
|
*/
|
2018-02-22 13:32:31 +00:00
|
|
|
if (en == 1) {
|
|
|
|
if (rdy == 0) {
|
2017-12-18 18:38:00 +00:00
|
|
|
/* EN == 1, wait for RDY == 1 or fail */
|
|
|
|
err = nvme_ctrlr_wait_for_ready(ctrlr, 1);
|
|
|
|
if (err != 0)
|
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* EN == 0 already wait for RDY == 0 */
|
2018-02-22 13:32:31 +00:00
|
|
|
if (rdy == 0)
|
2017-12-18 18:38:00 +00:00
|
|
|
return (0);
|
|
|
|
else
|
|
|
|
return (nvme_ctrlr_wait_for_ready(ctrlr, 0));
|
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
cc &= ~NVME_CC_REG_EN_MASK;
|
|
|
|
nvme_mmio_write_4(ctrlr, cc, cc);
|
2017-12-18 18:38:00 +00:00
|
|
|
/*
|
|
|
|
* Some drives have issues with accessing the mmio after we
|
|
|
|
* disable, so delay for a bit after we write the bit to
|
|
|
|
* cope with these issues.
|
|
|
|
*/
|
2017-12-18 20:11:21 +00:00
|
|
|
if (ctrlr->quirks & QUIRK_DELAY_B4_CHK_RDY)
|
2017-12-18 18:38:00 +00:00
|
|
|
pause("nvmeR", B4_CHK_RDY_DELAY_MS * hz / 1000);
|
|
|
|
return (nvme_ctrlr_wait_for_ready(ctrlr, 0));
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nvme_ctrlr_enable(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t cc;
|
|
|
|
uint32_t csts;
|
|
|
|
uint32_t aqa;
|
|
|
|
uint32_t qsize;
|
|
|
|
uint8_t en, rdy;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
cc = nvme_mmio_read_4(ctrlr, cc);
|
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
en = (cc >> NVME_CC_REG_EN_SHIFT) & NVME_CC_REG_EN_MASK;
|
|
|
|
rdy = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2017-12-18 18:38:00 +00:00
|
|
|
/*
|
|
|
|
* See note in nvme_ctrlr_disable. Short circuit if we're already enabled.
|
|
|
|
*/
|
2018-02-22 13:32:31 +00:00
|
|
|
if (en == 1) {
|
|
|
|
if (rdy == 1)
|
2012-09-17 19:23:01 +00:00
|
|
|
return (0);
|
|
|
|
else
|
2015-07-23 15:50:39 +00:00
|
|
|
return (nvme_ctrlr_wait_for_ready(ctrlr, 1));
|
2017-12-18 18:38:00 +00:00
|
|
|
} else {
|
|
|
|
/* EN == 0 already wait for RDY == 0 or fail */
|
|
|
|
err = nvme_ctrlr_wait_for_ready(ctrlr, 0);
|
|
|
|
if (err != 0)
|
|
|
|
return (err);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nvme_mmio_write_8(ctrlr, asq, ctrlr->adminq.cmd_bus_addr);
|
|
|
|
DELAY(5000);
|
|
|
|
nvme_mmio_write_8(ctrlr, acq, ctrlr->adminq.cpl_bus_addr);
|
|
|
|
DELAY(5000);
|
|
|
|
|
|
|
|
/* acqs and asqs are 0-based. */
|
2018-02-22 13:32:31 +00:00
|
|
|
qsize = ctrlr->adminq.num_entries - 1;
|
|
|
|
|
|
|
|
aqa = 0;
|
|
|
|
aqa = (qsize & NVME_AQA_REG_ACQS_MASK) << NVME_AQA_REG_ACQS_SHIFT;
|
|
|
|
aqa |= (qsize & NVME_AQA_REG_ASQS_MASK) << NVME_AQA_REG_ASQS_SHIFT;
|
|
|
|
nvme_mmio_write_4(ctrlr, aqa, aqa);
|
2012-09-17 19:23:01 +00:00
|
|
|
DELAY(5000);
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
/* Initialization values for CC */
|
|
|
|
cc = 0;
|
|
|
|
cc |= 1 << NVME_CC_REG_EN_SHIFT;
|
|
|
|
cc |= 0 << NVME_CC_REG_CSS_SHIFT;
|
|
|
|
cc |= 0 << NVME_CC_REG_AMS_SHIFT;
|
|
|
|
cc |= 0 << NVME_CC_REG_SHN_SHIFT;
|
|
|
|
cc |= 6 << NVME_CC_REG_IOSQES_SHIFT; /* SQ entry size == 64 == 2^6 */
|
|
|
|
cc |= 4 << NVME_CC_REG_IOCQES_SHIFT; /* CQ entry size == 16 == 2^4 */
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
/* This evaluates to 0, which is according to spec. */
|
2018-02-22 13:32:31 +00:00
|
|
|
cc |= (PAGE_SIZE >> 13) << NVME_CC_REG_MPS_SHIFT;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
nvme_mmio_write_4(ctrlr, cc, cc);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2015-07-23 15:50:39 +00:00
|
|
|
return (nvme_ctrlr_wait_for_ready(ctrlr, 1));
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-03-26 19:50:46 +00:00
|
|
|
nvme_ctrlr_hw_reset(struct nvme_controller *ctrlr)
|
2012-09-17 19:23:01 +00:00
|
|
|
{
|
2017-12-18 18:38:00 +00:00
|
|
|
int i, err;
|
2013-03-26 19:50:46 +00:00
|
|
|
|
|
|
|
nvme_admin_qpair_disable(&ctrlr->adminq);
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* I/O queues are not allocated before the initial HW
|
|
|
|
* reset, so do not try to disable them. Use is_initialized
|
|
|
|
* to determine if this is the initial HW reset.
|
|
|
|
*/
|
|
|
|
if (ctrlr->is_initialized) {
|
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++)
|
|
|
|
nvme_io_qpair_disable(&ctrlr->ioq[i]);
|
|
|
|
}
|
2013-03-26 19:50:46 +00:00
|
|
|
|
|
|
|
DELAY(100*1000);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2017-12-18 18:38:00 +00:00
|
|
|
err = nvme_ctrlr_disable(ctrlr);
|
|
|
|
if (err != 0)
|
|
|
|
return err;
|
2012-09-17 19:23:01 +00:00
|
|
|
return (nvme_ctrlr_enable(ctrlr));
|
|
|
|
}
|
|
|
|
|
2013-03-26 19:50:46 +00:00
|
|
|
void
|
|
|
|
nvme_ctrlr_reset(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2013-03-26 20:56:58 +00:00
|
|
|
int cmpset;
|
|
|
|
|
|
|
|
cmpset = atomic_cmpset_32(&ctrlr->is_resetting, 0, 1);
|
|
|
|
|
2013-03-26 21:58:38 +00:00
|
|
|
if (cmpset == 0 || ctrlr->is_failed)
|
|
|
|
/*
|
|
|
|
* Controller is already resetting or has failed. Return
|
|
|
|
* immediately since there is no need to kick off another
|
|
|
|
* reset in these cases.
|
|
|
|
*/
|
2013-03-26 20:56:58 +00:00
|
|
|
return;
|
2013-03-26 19:50:46 +00:00
|
|
|
|
2013-03-26 20:32:57 +00:00
|
|
|
taskqueue_enqueue(ctrlr->taskqueue, &ctrlr->reset_task);
|
2013-03-26 19:50:46 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_identify(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2013-03-26 22:09:51 +00:00
|
|
|
struct nvme_completion_poll_status status;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-01-29 00:00:52 +00:00
|
|
|
status.done = 0;
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_cmd_identify_controller(ctrlr, &ctrlr->cdata,
|
2013-03-26 22:09:51 +00:00
|
|
|
nvme_completion_poll_cb, &status);
|
2018-01-29 00:00:52 +00:00
|
|
|
while (!atomic_load_acq_int(&status.done))
|
2013-07-17 23:26:56 +00:00
|
|
|
pause("nvme", 1);
|
2013-03-26 22:09:51 +00:00
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_identify_controller failed!\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
/* Convert data to host endian */
|
|
|
|
nvme_controller_data_swapbytes(&ctrlr->cdata);
|
|
|
|
|
2013-03-26 21:16:53 +00:00
|
|
|
/*
|
|
|
|
* Use MDTS to ensure our default max_xfer_size doesn't exceed what the
|
|
|
|
* controller supports.
|
|
|
|
*/
|
|
|
|
if (ctrlr->cdata.mdts > 0)
|
|
|
|
ctrlr->max_xfer_size = min(ctrlr->max_xfer_size,
|
|
|
|
ctrlr->min_page_size * (1 << (ctrlr->cdata.mdts)));
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nvme_ctrlr_set_num_qpairs(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2013-03-26 22:09:51 +00:00
|
|
|
struct nvme_completion_poll_status status;
|
2016-01-07 16:18:32 +00:00
|
|
|
int cq_allocated, sq_allocated;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-01-29 00:00:52 +00:00
|
|
|
status.done = 0;
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_cmd_set_num_queues(ctrlr, ctrlr->num_io_queues,
|
2013-03-26 22:09:51 +00:00
|
|
|
nvme_completion_poll_cb, &status);
|
2018-01-29 00:00:52 +00:00
|
|
|
while (!atomic_load_acq_int(&status.done))
|
2013-07-17 23:26:56 +00:00
|
|
|
pause("nvme", 1);
|
2013-03-26 22:09:51 +00:00
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2017-03-07 23:06:41 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_ctrlr_set_num_qpairs failed!\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data in cdw0 is 0-based.
|
|
|
|
* Lower 16-bits indicate number of submission queues allocated.
|
|
|
|
* Upper 16-bits indicate number of completion queues allocated.
|
|
|
|
*/
|
2013-03-26 22:09:51 +00:00
|
|
|
sq_allocated = (status.cpl.cdw0 & 0xFFFF) + 1;
|
|
|
|
cq_allocated = (status.cpl.cdw0 >> 16) + 1;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
/*
|
2016-01-07 16:18:32 +00:00
|
|
|
* Controller may allocate more queues than we requested,
|
|
|
|
* so use the minimum of the number requested and what was
|
|
|
|
* actually allocated.
|
2012-09-17 19:23:01 +00:00
|
|
|
*/
|
2016-01-07 16:18:32 +00:00
|
|
|
ctrlr->num_io_queues = min(ctrlr->num_io_queues, sq_allocated);
|
|
|
|
ctrlr->num_io_queues = min(ctrlr->num_io_queues, cq_allocated);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nvme_ctrlr_create_qpairs(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2013-03-26 22:09:51 +00:00
|
|
|
struct nvme_completion_poll_status status;
|
|
|
|
struct nvme_qpair *qpair;
|
|
|
|
int i;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++) {
|
|
|
|
qpair = &ctrlr->ioq[i];
|
|
|
|
|
2018-01-29 00:00:52 +00:00
|
|
|
status.done = 0;
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_cmd_create_io_cq(ctrlr, qpair, qpair->vector,
|
2013-03-26 22:09:51 +00:00
|
|
|
nvme_completion_poll_cb, &status);
|
2018-01-29 00:00:52 +00:00
|
|
|
while (!atomic_load_acq_int(&status.done))
|
2013-07-17 23:26:56 +00:00
|
|
|
pause("nvme", 1);
|
2013-03-26 22:09:51 +00:00
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_create_io_cq failed!\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:00:52 +00:00
|
|
|
status.done = 0;
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_cmd_create_io_sq(qpair->ctrlr, qpair,
|
2013-03-26 22:09:51 +00:00
|
|
|
nvme_completion_poll_cb, &status);
|
2018-01-29 00:00:52 +00:00
|
|
|
while (!atomic_load_acq_int(&status.done))
|
2013-07-17 23:26:56 +00:00
|
|
|
pause("nvme", 1);
|
2013-03-26 22:09:51 +00:00
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_create_io_sq failed!\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2018-03-14 23:01:18 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_destroy_qpair(struct nvme_controller *ctrlr, struct nvme_qpair *qpair)
|
|
|
|
{
|
|
|
|
struct nvme_completion_poll_status status;
|
|
|
|
|
|
|
|
status.done = 0;
|
2018-03-14 23:28:28 +00:00
|
|
|
nvme_ctrlr_cmd_delete_io_sq(ctrlr, qpair,
|
2018-03-14 23:01:18 +00:00
|
|
|
nvme_completion_poll_cb, &status);
|
|
|
|
while (!atomic_load_acq_int(&status.done))
|
|
|
|
pause("nvme", 1);
|
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2018-03-14 23:28:28 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_destroy_io_sq failed!\n");
|
2018-03-14 23:01:18 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
status.done = 0;
|
|
|
|
nvme_ctrlr_cmd_delete_io_cq(ctrlr, qpair,
|
|
|
|
nvme_completion_poll_cb, &status);
|
|
|
|
while (!atomic_load_acq_int(&status.done))
|
|
|
|
pause("nvme", 1);
|
|
|
|
if (nvme_completion_is_error(&status.cpl)) {
|
2018-03-14 23:28:28 +00:00
|
|
|
nvme_printf(ctrlr, "nvme_destroy_io_cq failed!\n");
|
2018-03-14 23:01:18 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_construct_namespaces(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
struct nvme_namespace *ns;
|
2017-08-25 21:38:38 +00:00
|
|
|
uint32_t i;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2017-03-07 21:47:54 +00:00
|
|
|
for (i = 0; i < min(ctrlr->cdata.nn, NVME_MAX_NAMESPACES); i++) {
|
2012-09-17 19:23:01 +00:00
|
|
|
ns = &ctrlr->ns[i];
|
2017-03-07 21:47:54 +00:00
|
|
|
nvme_ns_construct(ns, i+1, ctrlr);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:05:15 +00:00
|
|
|
static boolean_t
|
|
|
|
is_log_page_id_valid(uint8_t page_id)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (page_id) {
|
|
|
|
case NVME_LOG_ERROR:
|
|
|
|
case NVME_LOG_HEALTH_INFORMATION:
|
|
|
|
case NVME_LOG_FIRMWARE_SLOT:
|
2018-05-25 03:34:33 +00:00
|
|
|
case NVME_LOG_CHANGED_NAMESPACE:
|
2013-03-26 21:05:15 +00:00
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
nvme_ctrlr_get_log_page_size(struct nvme_controller *ctrlr, uint8_t page_id)
|
|
|
|
{
|
|
|
|
uint32_t log_page_size;
|
|
|
|
|
|
|
|
switch (page_id) {
|
|
|
|
case NVME_LOG_ERROR:
|
|
|
|
log_page_size = min(
|
|
|
|
sizeof(struct nvme_error_information_entry) *
|
2018-02-22 13:32:31 +00:00
|
|
|
(ctrlr->cdata.elpe + 1), NVME_MAX_AER_LOG_SIZE);
|
2013-03-26 21:05:15 +00:00
|
|
|
break;
|
|
|
|
case NVME_LOG_HEALTH_INFORMATION:
|
|
|
|
log_page_size = sizeof(struct nvme_health_information_page);
|
|
|
|
break;
|
|
|
|
case NVME_LOG_FIRMWARE_SLOT:
|
|
|
|
log_page_size = sizeof(struct nvme_firmware_page);
|
|
|
|
break;
|
2018-05-25 03:34:33 +00:00
|
|
|
case NVME_LOG_CHANGED_NAMESPACE:
|
|
|
|
log_page_size = sizeof(struct nvme_ns_list);
|
|
|
|
break;
|
2013-03-26 21:05:15 +00:00
|
|
|
default:
|
|
|
|
log_page_size = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (log_page_size);
|
|
|
|
}
|
|
|
|
|
2013-10-08 16:00:12 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_log_critical_warnings(struct nvme_controller *ctrlr,
|
2018-02-22 13:32:31 +00:00
|
|
|
uint8_t state)
|
2013-10-08 16:00:12 +00:00
|
|
|
{
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_AVAILABLE_SPARE)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr, "available spare space below threshold\n");
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_TEMPERATURE)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr, "temperature above threshold\n");
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_DEVICE_RELIABILITY)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr, "device reliability degraded\n");
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_READ_ONLY)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr, "media placed in read only mode\n");
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_VOLATILE_MEMORY_BACKUP)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr, "volatile memory backup device failed\n");
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
if (state & NVME_CRIT_WARN_ST_RESERVED_MASK)
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_printf(ctrlr,
|
2018-02-22 13:32:31 +00:00
|
|
|
"unknown critical warning(s): state = 0x%02x\n", state);
|
2013-10-08 16:00:12 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 21:05:15 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_async_event_log_page_cb(void *arg, const struct nvme_completion *cpl)
|
|
|
|
{
|
2013-10-08 16:00:12 +00:00
|
|
|
struct nvme_async_event_request *aer = arg;
|
|
|
|
struct nvme_health_information_page *health_info;
|
2018-05-25 03:34:33 +00:00
|
|
|
struct nvme_ns_list *nsl;
|
2018-02-22 13:32:31 +00:00
|
|
|
struct nvme_error_information_entry *err;
|
|
|
|
int i;
|
2013-03-26 21:05:15 +00:00
|
|
|
|
2013-03-26 21:08:32 +00:00
|
|
|
/*
|
|
|
|
* If the log page fetch for some reason completed with an error,
|
|
|
|
* don't pass log page data to the consumers. In practice, this case
|
|
|
|
* should never happen.
|
|
|
|
*/
|
|
|
|
if (nvme_completion_is_error(cpl))
|
|
|
|
nvme_notify_async_consumers(aer->ctrlr, &aer->cpl,
|
|
|
|
aer->log_page_id, NULL, 0);
|
2013-10-08 16:00:12 +00:00
|
|
|
else {
|
2018-02-22 13:32:31 +00:00
|
|
|
/* Convert data to host endian */
|
|
|
|
switch (aer->log_page_id) {
|
|
|
|
case NVME_LOG_ERROR:
|
|
|
|
err = (struct nvme_error_information_entry *)aer->log_page_buffer;
|
|
|
|
for (i = 0; i < (aer->ctrlr->cdata.elpe + 1); i++)
|
|
|
|
nvme_error_information_entry_swapbytes(err++);
|
|
|
|
break;
|
|
|
|
case NVME_LOG_HEALTH_INFORMATION:
|
|
|
|
nvme_health_information_page_swapbytes(
|
|
|
|
(struct nvme_health_information_page *)aer->log_page_buffer);
|
|
|
|
break;
|
|
|
|
case NVME_LOG_FIRMWARE_SLOT:
|
|
|
|
nvme_firmware_page_swapbytes(
|
|
|
|
(struct nvme_firmware_page *)aer->log_page_buffer);
|
|
|
|
break;
|
2018-05-25 03:34:33 +00:00
|
|
|
case NVME_LOG_CHANGED_NAMESPACE:
|
|
|
|
nvme_ns_list_swapbytes(
|
|
|
|
(struct nvme_ns_list *)aer->log_page_buffer);
|
|
|
|
break;
|
2018-02-22 13:32:31 +00:00
|
|
|
case INTEL_LOG_TEMP_STATS:
|
|
|
|
intel_log_temp_stats_swapbytes(
|
|
|
|
(struct intel_log_temp_stats *)aer->log_page_buffer);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-10-08 16:00:12 +00:00
|
|
|
if (aer->log_page_id == NVME_LOG_HEALTH_INFORMATION) {
|
|
|
|
health_info = (struct nvme_health_information_page *)
|
|
|
|
aer->log_page_buffer;
|
|
|
|
nvme_ctrlr_log_critical_warnings(aer->ctrlr,
|
|
|
|
health_info->critical_warning);
|
|
|
|
/*
|
|
|
|
* Critical warnings reported through the
|
|
|
|
* SMART/health log page are persistent, so
|
|
|
|
* clear the associated bits in the async event
|
|
|
|
* config so that we do not receive repeated
|
|
|
|
* notifications for the same event.
|
|
|
|
*/
|
2018-02-22 13:32:31 +00:00
|
|
|
aer->ctrlr->async_event_config &=
|
|
|
|
~health_info->critical_warning;
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_ctrlr_cmd_set_async_event_config(aer->ctrlr,
|
|
|
|
aer->ctrlr->async_event_config, NULL, NULL);
|
2018-05-25 03:34:33 +00:00
|
|
|
} else if (aer->log_page_id == NVME_LOG_CHANGED_NAMESPACE &&
|
|
|
|
!nvme_use_nvd) {
|
|
|
|
nsl = (struct nvme_ns_list *)aer->log_page_buffer;
|
|
|
|
for (i = 0; i < nitems(nsl->ns) && nsl->ns[i] != 0; i++) {
|
|
|
|
if (nsl->ns[i] > NVME_MAX_NAMESPACES)
|
|
|
|
break;
|
|
|
|
nvme_notify_ns(aer->ctrlr, nsl->ns[i]);
|
|
|
|
}
|
2013-10-08 16:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-26 21:08:32 +00:00
|
|
|
/*
|
|
|
|
* Pass the cpl data from the original async event completion,
|
|
|
|
* not the log page fetch.
|
|
|
|
*/
|
|
|
|
nvme_notify_async_consumers(aer->ctrlr, &aer->cpl,
|
|
|
|
aer->log_page_id, aer->log_page_buffer, aer->log_page_size);
|
2013-10-08 16:00:12 +00:00
|
|
|
}
|
2013-03-26 21:05:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Repost another asynchronous event request to replace the one
|
|
|
|
* that just completed.
|
|
|
|
*/
|
|
|
|
nvme_ctrlr_construct_and_submit_aer(aer->ctrlr, aer);
|
|
|
|
}
|
|
|
|
|
2013-03-26 18:37:36 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_async_event_cb(void *arg, const struct nvme_completion *cpl)
|
|
|
|
{
|
2013-03-26 21:05:15 +00:00
|
|
|
struct nvme_async_event_request *aer = arg;
|
2013-03-26 18:37:36 +00:00
|
|
|
|
2013-07-09 21:03:39 +00:00
|
|
|
if (nvme_completion_is_error(cpl)) {
|
2013-03-26 18:37:36 +00:00
|
|
|
/*
|
2013-07-09 21:03:39 +00:00
|
|
|
* Do not retry failed async event requests. This avoids
|
|
|
|
* infinite loops where a new async event request is submitted
|
|
|
|
* to replace the one just failed, only to fail again and
|
|
|
|
* perpetuate the loop.
|
2013-03-26 18:37:36 +00:00
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:05:15 +00:00
|
|
|
/* Associated log page is in bits 23:16 of completion entry dw0. */
|
2013-03-26 21:08:32 +00:00
|
|
|
aer->log_page_id = (cpl->cdw0 & 0xFF0000) >> 16;
|
2013-03-26 21:05:15 +00:00
|
|
|
|
2018-05-25 03:34:33 +00:00
|
|
|
nvme_printf(aer->ctrlr, "async event occurred (type 0x%x, info 0x%02x,"
|
|
|
|
" page 0x%02x)\n", (cpl->cdw0 & 0x03), (cpl->cdw0 & 0xFF00) >> 8,
|
2013-03-26 22:17:10 +00:00
|
|
|
aer->log_page_id);
|
|
|
|
|
2013-03-26 21:08:32 +00:00
|
|
|
if (is_log_page_id_valid(aer->log_page_id)) {
|
2013-03-26 21:05:15 +00:00
|
|
|
aer->log_page_size = nvme_ctrlr_get_log_page_size(aer->ctrlr,
|
2013-03-26 21:08:32 +00:00
|
|
|
aer->log_page_id);
|
2013-03-26 21:05:15 +00:00
|
|
|
memcpy(&aer->cpl, cpl, sizeof(*cpl));
|
2013-03-26 21:08:32 +00:00
|
|
|
nvme_ctrlr_cmd_get_log_page(aer->ctrlr, aer->log_page_id,
|
2013-03-26 21:05:15 +00:00
|
|
|
NVME_GLOBAL_NAMESPACE_TAG, aer->log_page_buffer,
|
|
|
|
aer->log_page_size, nvme_ctrlr_async_event_log_page_cb,
|
|
|
|
aer);
|
|
|
|
/* Wait to notify consumers until after log page is fetched. */
|
|
|
|
} else {
|
2013-03-26 21:08:32 +00:00
|
|
|
nvme_notify_async_consumers(aer->ctrlr, cpl, aer->log_page_id,
|
|
|
|
NULL, 0);
|
2013-03-26 18:37:36 +00:00
|
|
|
|
2013-03-26 21:05:15 +00:00
|
|
|
/*
|
|
|
|
* Repost another asynchronous event request to replace the one
|
|
|
|
* that just completed.
|
|
|
|
*/
|
|
|
|
nvme_ctrlr_construct_and_submit_aer(aer->ctrlr, aer);
|
|
|
|
}
|
2013-03-26 18:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvme_ctrlr_construct_and_submit_aer(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_async_event_request *aer)
|
|
|
|
{
|
|
|
|
struct nvme_request *req;
|
|
|
|
|
|
|
|
aer->ctrlr = ctrlr;
|
2013-03-29 20:34:28 +00:00
|
|
|
req = nvme_allocate_request_null(nvme_ctrlr_async_event_cb, aer);
|
2013-03-26 18:37:36 +00:00
|
|
|
aer->req = req;
|
|
|
|
|
|
|
|
/*
|
2013-03-26 20:02:35 +00:00
|
|
|
* Disable timeout here, since asynchronous event requests should by
|
|
|
|
* nature never be timed out.
|
2013-03-26 18:37:36 +00:00
|
|
|
*/
|
2013-03-26 20:02:35 +00:00
|
|
|
req->timeout = FALSE;
|
2018-08-22 04:29:24 +00:00
|
|
|
req->cmd.opc = NVME_OPC_ASYNC_EVENT_REQUEST;
|
2013-03-26 18:37:36 +00:00
|
|
|
nvme_ctrlr_submit_admin_request(ctrlr, req);
|
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_configure_aer(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2013-10-08 15:49:14 +00:00
|
|
|
struct nvme_completion_poll_status status;
|
2013-03-26 18:37:36 +00:00
|
|
|
struct nvme_async_event_request *aer;
|
|
|
|
uint32_t i;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2018-05-25 03:34:33 +00:00
|
|
|
ctrlr->async_event_config = NVME_CRIT_WARN_ST_AVAILABLE_SPARE |
|
|
|
|
NVME_CRIT_WARN_ST_DEVICE_RELIABILITY |
|
|
|
|
NVME_CRIT_WARN_ST_READ_ONLY |
|
|
|
|
NVME_CRIT_WARN_ST_VOLATILE_MEMORY_BACKUP;
|
|
|
|
if (ctrlr->cdata.ver >= NVME_REV(1, 2))
|
|
|
|
ctrlr->async_event_config |= 0x300;
|
2013-10-08 15:49:14 +00:00
|
|
|
|
2018-01-29 00:00:52 +00:00
|
|
|
status.done = 0;
|
2013-10-08 15:49:14 +00:00
|
|
|
nvme_ctrlr_cmd_get_feature(ctrlr, NVME_FEAT_TEMPERATURE_THRESHOLD,
|
|
|
|
0, NULL, 0, nvme_completion_poll_cb, &status);
|
2018-01-29 00:00:52 +00:00
|
|
|
while (!atomic_load_acq_int(&status.done))
|
2013-10-08 15:49:14 +00:00
|
|
|
pause("nvme", 1);
|
|
|
|
if (nvme_completion_is_error(&status.cpl) ||
|
|
|
|
(status.cpl.cdw0 & 0xFFFF) == 0xFFFF ||
|
|
|
|
(status.cpl.cdw0 & 0xFFFF) == 0x0000) {
|
|
|
|
nvme_printf(ctrlr, "temperature threshold not supported\n");
|
2018-05-25 03:34:33 +00:00
|
|
|
} else
|
|
|
|
ctrlr->async_event_config |= NVME_CRIT_WARN_ST_TEMPERATURE;
|
2013-10-08 15:49:14 +00:00
|
|
|
|
2013-10-08 16:00:12 +00:00
|
|
|
nvme_ctrlr_cmd_set_async_event_config(ctrlr,
|
|
|
|
ctrlr->async_event_config, NULL, NULL);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
/* aerl is a zero-based value, so we need to add 1 here. */
|
2013-03-26 18:37:36 +00:00
|
|
|
ctrlr->num_aers = min(NVME_MAX_ASYNC_EVENTS, (ctrlr->cdata.aerl+1));
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2013-03-26 18:37:36 +00:00
|
|
|
for (i = 0; i < ctrlr->num_aers; i++) {
|
|
|
|
aer = &ctrlr->aer[i];
|
|
|
|
nvme_ctrlr_construct_and_submit_aer(ctrlr, aer);
|
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvme_ctrlr_configure_int_coalescing(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
|
|
|
|
ctrlr->int_coal_time = 0;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.int_coal_time",
|
|
|
|
&ctrlr->int_coal_time);
|
|
|
|
|
|
|
|
ctrlr->int_coal_threshold = 0;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.int_coal_threshold",
|
|
|
|
&ctrlr->int_coal_threshold);
|
|
|
|
|
|
|
|
nvme_ctrlr_cmd_set_interrupt_coalescing(ctrlr, ctrlr->int_coal_time,
|
|
|
|
ctrlr->int_coal_threshold, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:19:26 +00:00
|
|
|
static void
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_ctrlr_start(void *ctrlr_arg)
|
|
|
|
{
|
|
|
|
struct nvme_controller *ctrlr = ctrlr_arg;
|
2016-01-07 16:18:32 +00:00
|
|
|
uint32_t old_num_io_queues;
|
2013-03-26 19:50:46 +00:00
|
|
|
int i;
|
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* Only reset adminq here when we are restarting the
|
|
|
|
* controller after a reset. During initialization,
|
|
|
|
* we have already submitted admin commands to get
|
|
|
|
* the number of I/O queues supported, so cannot reset
|
|
|
|
* the adminq again here.
|
|
|
|
*/
|
|
|
|
if (ctrlr->is_resetting) {
|
|
|
|
nvme_qpair_reset(&ctrlr->adminq);
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:14:51 +00:00
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++)
|
|
|
|
nvme_qpair_reset(&ctrlr->ioq[i]);
|
|
|
|
|
2013-03-26 19:50:46 +00:00
|
|
|
nvme_admin_qpair_enable(&ctrlr->adminq);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2013-03-26 21:58:38 +00:00
|
|
|
if (nvme_ctrlr_identify(ctrlr) != 0) {
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
2013-03-26 21:19:26 +00:00
|
|
|
return;
|
2013-03-26 21:58:38 +00:00
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* The number of qpairs are determined during controller initialization,
|
|
|
|
* including using NVMe SET_FEATURES/NUMBER_OF_QUEUES to determine the
|
|
|
|
* HW limit. We call SET_FEATURES again here so that it gets called
|
|
|
|
* after any reset for controllers that depend on the driver to
|
|
|
|
* explicit specify how many queues it will use. This value should
|
|
|
|
* never change between resets, so panic if somehow that does happen.
|
|
|
|
*/
|
2016-02-11 17:32:41 +00:00
|
|
|
if (ctrlr->is_resetting) {
|
|
|
|
old_num_io_queues = ctrlr->num_io_queues;
|
|
|
|
if (nvme_ctrlr_set_num_qpairs(ctrlr) != 0) {
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
|
|
|
return;
|
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-02-11 17:32:41 +00:00
|
|
|
if (old_num_io_queues != ctrlr->num_io_queues) {
|
|
|
|
panic("num_io_queues changed from %u to %u",
|
|
|
|
old_num_io_queues, ctrlr->num_io_queues);
|
|
|
|
}
|
2016-01-07 16:18:32 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 21:58:38 +00:00
|
|
|
if (nvme_ctrlr_create_qpairs(ctrlr) != 0) {
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
2013-03-26 21:19:26 +00:00
|
|
|
return;
|
2013-03-26 21:58:38 +00:00
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2013-03-26 21:58:38 +00:00
|
|
|
if (nvme_ctrlr_construct_namespaces(ctrlr) != 0) {
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
2013-03-26 21:19:26 +00:00
|
|
|
return;
|
2013-03-26 21:58:38 +00:00
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
nvme_ctrlr_configure_aer(ctrlr);
|
|
|
|
nvme_ctrlr_configure_int_coalescing(ctrlr);
|
|
|
|
|
2013-03-26 19:50:46 +00:00
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++)
|
|
|
|
nvme_io_qpair_enable(&ctrlr->ioq[i]);
|
2013-03-26 21:19:26 +00:00
|
|
|
}
|
2013-03-26 19:50:46 +00:00
|
|
|
|
2013-03-26 21:19:26 +00:00
|
|
|
void
|
|
|
|
nvme_ctrlr_start_config_hook(void *arg)
|
|
|
|
{
|
|
|
|
struct nvme_controller *ctrlr = arg;
|
2013-03-26 19:50:46 +00:00
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
nvme_qpair_reset(&ctrlr->adminq);
|
|
|
|
nvme_admin_qpair_enable(&ctrlr->adminq);
|
|
|
|
|
|
|
|
if (nvme_ctrlr_set_num_qpairs(ctrlr) == 0 &&
|
|
|
|
nvme_ctrlr_construct_io_qpairs(ctrlr) == 0)
|
|
|
|
nvme_ctrlr_start(ctrlr);
|
|
|
|
else
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
|
|
|
|
|
|
|
nvme_sysctl_initialize_ctrlr(ctrlr);
|
2013-03-26 21:19:26 +00:00
|
|
|
config_intrhook_disestablish(&ctrlr->config_hook);
|
2014-03-18 18:09:08 +00:00
|
|
|
|
|
|
|
ctrlr->is_initialized = 1;
|
|
|
|
nvme_notify_new_controller(ctrlr);
|
2012-09-17 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 19:58:17 +00:00
|
|
|
static void
|
2013-03-26 20:32:57 +00:00
|
|
|
nvme_ctrlr_reset_task(void *arg, int pending)
|
2013-03-26 19:58:17 +00:00
|
|
|
{
|
2013-03-26 20:32:57 +00:00
|
|
|
struct nvme_controller *ctrlr = arg;
|
|
|
|
int status;
|
2013-03-26 19:58:17 +00:00
|
|
|
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "resetting controller\n");
|
2013-03-26 20:32:57 +00:00
|
|
|
status = nvme_ctrlr_hw_reset(ctrlr);
|
|
|
|
/*
|
|
|
|
* Use pause instead of DELAY, so that we yield to any nvme interrupt
|
|
|
|
* handlers on this CPU that were blocked on a qpair lock. We want
|
|
|
|
* all nvme interrupts completed before proceeding with restarting the
|
|
|
|
* controller.
|
|
|
|
*
|
|
|
|
* XXX - any way to guarantee the interrupt handlers have quiesced?
|
|
|
|
*/
|
|
|
|
pause("nvmereset", hz / 10);
|
|
|
|
if (status == 0)
|
|
|
|
nvme_ctrlr_start(ctrlr);
|
2013-03-26 21:58:38 +00:00
|
|
|
else
|
|
|
|
nvme_ctrlr_fail(ctrlr);
|
2013-03-26 20:56:58 +00:00
|
|
|
|
|
|
|
atomic_cmpset_32(&ctrlr->is_resetting, 1, 0);
|
2013-03-26 19:58:17 +00:00
|
|
|
}
|
|
|
|
|
2017-10-15 16:18:08 +00:00
|
|
|
/*
|
|
|
|
* Poll all the queues enabled on the device for completion.
|
|
|
|
*/
|
2016-06-10 06:04:53 +00:00
|
|
|
void
|
2017-10-15 16:18:08 +00:00
|
|
|
nvme_ctrlr_poll(struct nvme_controller *ctrlr)
|
2012-09-17 19:23:01 +00:00
|
|
|
{
|
2017-10-15 16:18:08 +00:00
|
|
|
int i;
|
2012-12-18 21:50:48 +00:00
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_qpair_process_completions(&ctrlr->adminq);
|
|
|
|
|
2017-10-15 16:18:08 +00:00
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++)
|
|
|
|
if (ctrlr->ioq && ctrlr->ioq[i].cpl)
|
|
|
|
nvme_qpair_process_completions(&ctrlr->ioq[i]);
|
|
|
|
}
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2017-10-15 16:18:08 +00:00
|
|
|
/*
|
|
|
|
* Poll the single-vector intertrupt case: num_io_queues will be 1 and
|
|
|
|
* there's only a single vector. While we're polling, we mask further
|
|
|
|
* interrupts in the controller.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nvme_ctrlr_intx_handler(void *arg)
|
|
|
|
{
|
|
|
|
struct nvme_controller *ctrlr = arg;
|
|
|
|
|
|
|
|
nvme_mmio_write_4(ctrlr, intms, 1);
|
|
|
|
nvme_ctrlr_poll(ctrlr);
|
2012-09-17 19:23:01 +00:00
|
|
|
nvme_mmio_write_4(ctrlr, intmc, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nvme_ctrlr_configure_intx(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
|
2016-01-07 16:12:42 +00:00
|
|
|
ctrlr->msix_enabled = 0;
|
2012-09-17 19:23:01 +00:00
|
|
|
ctrlr->num_io_queues = 1;
|
2016-01-07 16:18:32 +00:00
|
|
|
ctrlr->num_cpus_per_ioq = mp_ncpus;
|
2012-09-17 19:23:01 +00:00
|
|
|
ctrlr->rid = 0;
|
|
|
|
ctrlr->res = bus_alloc_resource_any(ctrlr->dev, SYS_RES_IRQ,
|
|
|
|
&ctrlr->rid, RF_SHAREABLE | RF_ACTIVE);
|
|
|
|
|
|
|
|
if (ctrlr->res == NULL) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "unable to allocate shared IRQ\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
bus_setup_intr(ctrlr->dev, ctrlr->res,
|
|
|
|
INTR_TYPE_MISC | INTR_MPSAFE, NULL, nvme_ctrlr_intx_handler,
|
|
|
|
ctrlr, &ctrlr->tag);
|
|
|
|
|
|
|
|
if (ctrlr->tag == NULL) {
|
2013-03-26 22:17:10 +00:00
|
|
|
nvme_printf(ctrlr, "unable to setup intx handler\n");
|
2012-09-17 19:23:01 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2013-04-12 17:52:17 +00:00
|
|
|
static void
|
|
|
|
nvme_pt_done(void *arg, const struct nvme_completion *cpl)
|
|
|
|
{
|
|
|
|
struct nvme_pt_command *pt = arg;
|
2018-05-02 20:13:03 +00:00
|
|
|
struct mtx *mtx = pt->driver_lock;
|
2018-02-22 13:32:31 +00:00
|
|
|
uint16_t status;
|
2013-04-12 17:52:17 +00:00
|
|
|
|
|
|
|
bzero(&pt->cpl, sizeof(pt->cpl));
|
|
|
|
pt->cpl.cdw0 = cpl->cdw0;
|
2018-02-22 13:32:31 +00:00
|
|
|
|
|
|
|
status = cpl->status;
|
|
|
|
status &= ~NVME_STATUS_P_MASK;
|
|
|
|
pt->cpl.status = status;
|
2013-04-12 17:52:17 +00:00
|
|
|
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx_lock(mtx);
|
|
|
|
pt->driver_lock = NULL;
|
2013-04-12 17:52:17 +00:00
|
|
|
wakeup(pt);
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx_unlock(mtx);
|
2013-04-12 17:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
nvme_ctrlr_passthrough_cmd(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_pt_command *pt, uint32_t nsid, int is_user_buffer,
|
|
|
|
int is_admin_cmd)
|
|
|
|
{
|
|
|
|
struct nvme_request *req;
|
|
|
|
struct mtx *mtx;
|
|
|
|
struct buf *buf = NULL;
|
|
|
|
int ret = 0;
|
2017-02-02 23:04:06 +00:00
|
|
|
vm_offset_t addr, end;
|
2013-04-12 17:52:17 +00:00
|
|
|
|
2013-06-26 23:32:45 +00:00
|
|
|
if (pt->len > 0) {
|
2017-02-02 23:04:06 +00:00
|
|
|
/*
|
|
|
|
* vmapbuf calls vm_fault_quick_hold_pages which only maps full
|
|
|
|
* pages. Ensure this request has fewer than MAXPHYS bytes when
|
|
|
|
* extended to full pages.
|
|
|
|
*/
|
|
|
|
addr = (vm_offset_t)pt->buf;
|
|
|
|
end = round_page(addr + pt->len);
|
|
|
|
addr = trunc_page(addr);
|
|
|
|
if (end - addr > MAXPHYS)
|
|
|
|
return EIO;
|
|
|
|
|
2013-06-26 23:32:45 +00:00
|
|
|
if (pt->len > ctrlr->max_xfer_size) {
|
|
|
|
nvme_printf(ctrlr, "pt->len (%d) "
|
|
|
|
"exceeds max_xfer_size (%d)\n", pt->len,
|
|
|
|
ctrlr->max_xfer_size);
|
|
|
|
return EIO;
|
|
|
|
}
|
2013-04-12 17:52:17 +00:00
|
|
|
if (is_user_buffer) {
|
|
|
|
/*
|
|
|
|
* Ensure the user buffer is wired for the duration of
|
|
|
|
* this passthrough command.
|
|
|
|
*/
|
|
|
|
PHOLD(curproc);
|
Allocate pager bufs from UMA instead of 80-ish mutex protected linked list.
o In vm_pager_bufferinit() create pbuf_zone and start accounting on how many
pbufs are we going to have set.
In various subsystems that are going to utilize pbufs create private zones
via call to pbuf_zsecond_create(). The latter calls uma_zsecond_create(),
and sets a limit on created zone. After startup preallocate pbufs according
to requirements of all pbuf zones.
Subsystems that used to have a private limit with old allocator now have
private pbuf zones: md(4), fusefs, NFS client, smbfs, VFS cluster, FFS,
swap, vnode pager.
The following subsystems use shared pbuf zone: cam(4), nvme(4), physio(9),
aio(4). They should have their private limits, but changing that is out of
scope of this commit.
o Fetch tunable value of kern.nswbuf from init_param2() and while here move
NSWBUF_MIN to opt_param.h and eliminate opt_swap.h, that was holding only
this option.
Default values aren't touched by this commit, but they probably should be
reviewed wrt to modern hardware.
This change removes a tight bottleneck from sendfile(2) operation, that
uses pbufs in vnode pager. Other pagers also would benefit from faster
allocation.
Together with: gallatin
Tested by: pho
2019-01-15 01:02:16 +00:00
|
|
|
buf = uma_zalloc(pbuf_zone, M_WAITOK);
|
2013-04-12 17:52:17 +00:00
|
|
|
buf->b_data = pt->buf;
|
|
|
|
buf->b_bufsize = pt->len;
|
|
|
|
buf->b_iocmd = pt->is_read ? BIO_READ : BIO_WRITE;
|
|
|
|
#ifdef NVME_UNMAPPED_BIO_SUPPORT
|
|
|
|
if (vmapbuf(buf, 1) < 0) {
|
|
|
|
#else
|
|
|
|
if (vmapbuf(buf) < 0) {
|
|
|
|
#endif
|
|
|
|
ret = EFAULT;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
req = nvme_allocate_request_vaddr(buf->b_data, pt->len,
|
|
|
|
nvme_pt_done, pt);
|
|
|
|
} else
|
|
|
|
req = nvme_allocate_request_vaddr(pt->buf, pt->len,
|
|
|
|
nvme_pt_done, pt);
|
2013-06-26 23:32:45 +00:00
|
|
|
} else
|
2013-04-12 17:52:17 +00:00
|
|
|
req = nvme_allocate_request_null(nvme_pt_done, pt);
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
/* Assume userspace already converted to little-endian */
|
2018-08-22 04:29:24 +00:00
|
|
|
req->cmd.opc = pt->cmd.opc;
|
|
|
|
req->cmd.fuse = pt->cmd.fuse;
|
2018-12-07 21:58:08 +00:00
|
|
|
req->cmd.rsvd2 = pt->cmd.rsvd2;
|
|
|
|
req->cmd.rsvd3 = pt->cmd.rsvd3;
|
2018-02-22 13:32:31 +00:00
|
|
|
req->cmd.cdw10 = pt->cmd.cdw10;
|
|
|
|
req->cmd.cdw11 = pt->cmd.cdw11;
|
|
|
|
req->cmd.cdw12 = pt->cmd.cdw12;
|
|
|
|
req->cmd.cdw13 = pt->cmd.cdw13;
|
|
|
|
req->cmd.cdw14 = pt->cmd.cdw14;
|
|
|
|
req->cmd.cdw15 = pt->cmd.cdw15;
|
2013-04-12 17:52:17 +00:00
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
req->cmd.nsid = htole32(nsid);
|
2013-04-12 17:52:17 +00:00
|
|
|
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx = mtx_pool_find(mtxpool_sleep, pt);
|
2013-04-12 17:52:17 +00:00
|
|
|
pt->driver_lock = mtx;
|
|
|
|
|
|
|
|
if (is_admin_cmd)
|
|
|
|
nvme_ctrlr_submit_admin_request(ctrlr, req);
|
|
|
|
else
|
|
|
|
nvme_ctrlr_submit_io_request(ctrlr, req);
|
|
|
|
|
2018-05-02 20:13:03 +00:00
|
|
|
mtx_lock(mtx);
|
|
|
|
while (pt->driver_lock != NULL)
|
|
|
|
mtx_sleep(pt, mtx, PRIBIO, "nvme_pt", 0);
|
2013-04-12 17:52:17 +00:00
|
|
|
mtx_unlock(mtx);
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (buf != NULL) {
|
Allocate pager bufs from UMA instead of 80-ish mutex protected linked list.
o In vm_pager_bufferinit() create pbuf_zone and start accounting on how many
pbufs are we going to have set.
In various subsystems that are going to utilize pbufs create private zones
via call to pbuf_zsecond_create(). The latter calls uma_zsecond_create(),
and sets a limit on created zone. After startup preallocate pbufs according
to requirements of all pbuf zones.
Subsystems that used to have a private limit with old allocator now have
private pbuf zones: md(4), fusefs, NFS client, smbfs, VFS cluster, FFS,
swap, vnode pager.
The following subsystems use shared pbuf zone: cam(4), nvme(4), physio(9),
aio(4). They should have their private limits, but changing that is out of
scope of this commit.
o Fetch tunable value of kern.nswbuf from init_param2() and while here move
NSWBUF_MIN to opt_param.h and eliminate opt_swap.h, that was holding only
this option.
Default values aren't touched by this commit, but they probably should be
reviewed wrt to modern hardware.
This change removes a tight bottleneck from sendfile(2) operation, that
uses pbufs in vnode pager. Other pagers also would benefit from faster
allocation.
Together with: gallatin
Tested by: pho
2019-01-15 01:02:16 +00:00
|
|
|
uma_zfree(pbuf_zone, buf);
|
2013-04-12 17:52:17 +00:00
|
|
|
PRELE(curproc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_ioctl(struct cdev *cdev, u_long cmd, caddr_t arg, int flag,
|
|
|
|
struct thread *td)
|
|
|
|
{
|
2013-03-26 22:09:51 +00:00
|
|
|
struct nvme_controller *ctrlr;
|
2013-04-12 17:52:17 +00:00
|
|
|
struct nvme_pt_command *pt;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
|
|
|
ctrlr = cdev->si_drv1;
|
|
|
|
|
|
|
|
switch (cmd) {
|
2013-03-26 19:50:46 +00:00
|
|
|
case NVME_RESET_CONTROLLER:
|
|
|
|
nvme_ctrlr_reset(ctrlr);
|
|
|
|
break;
|
2013-04-12 17:52:17 +00:00
|
|
|
case NVME_PASSTHROUGH_CMD:
|
|
|
|
pt = (struct nvme_pt_command *)arg;
|
2018-02-22 13:32:31 +00:00
|
|
|
return (nvme_ctrlr_passthrough_cmd(ctrlr, pt, le32toh(pt->cmd.nsid),
|
2013-04-12 17:52:17 +00:00
|
|
|
1 /* is_user_buffer */, 1 /* is_admin_cmd */));
|
2012-09-17 19:23:01 +00:00
|
|
|
default:
|
|
|
|
return (ENOTTY);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cdevsw nvme_ctrlr_cdevsw = {
|
|
|
|
.d_version = D_VERSION,
|
|
|
|
.d_flags = 0,
|
|
|
|
.d_ioctl = nvme_ctrlr_ioctl
|
|
|
|
};
|
|
|
|
|
2016-01-07 16:12:42 +00:00
|
|
|
static void
|
|
|
|
nvme_ctrlr_setup_interrupts(struct nvme_controller *ctrlr)
|
2012-09-17 19:23:01 +00:00
|
|
|
{
|
2016-01-07 16:12:42 +00:00
|
|
|
device_t dev;
|
|
|
|
int per_cpu_io_queues;
|
2016-01-07 20:32:04 +00:00
|
|
|
int min_cpus_per_ioq;
|
2016-01-07 16:12:42 +00:00
|
|
|
int num_vectors_requested, num_vectors_allocated;
|
2016-01-07 16:18:32 +00:00
|
|
|
int num_vectors_available;
|
2013-03-26 21:14:51 +00:00
|
|
|
|
2016-01-07 16:12:42 +00:00
|
|
|
dev = ctrlr->dev;
|
2016-01-07 20:32:04 +00:00
|
|
|
min_cpus_per_ioq = 1;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.min_cpus_per_ioq", &min_cpus_per_ioq);
|
|
|
|
|
|
|
|
if (min_cpus_per_ioq < 1) {
|
|
|
|
min_cpus_per_ioq = 1;
|
|
|
|
} else if (min_cpus_per_ioq > mp_ncpus) {
|
|
|
|
min_cpus_per_ioq = mp_ncpus;
|
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
per_cpu_io_queues = 1;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.per_cpu_io_queues", &per_cpu_io_queues);
|
|
|
|
|
2016-01-07 20:32:04 +00:00
|
|
|
if (per_cpu_io_queues == 0) {
|
|
|
|
min_cpus_per_ioq = mp_ncpus;
|
|
|
|
}
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
ctrlr->force_intx = 0;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.force_intx", &ctrlr->force_intx);
|
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
/*
|
|
|
|
* FreeBSD currently cannot allocate more than about 190 vectors at
|
|
|
|
* boot, meaning that systems with high core count and many devices
|
|
|
|
* requesting per-CPU interrupt vectors will not get their full
|
|
|
|
* allotment. So first, try to allocate as many as we may need to
|
|
|
|
* understand what is available, then immediately release them.
|
|
|
|
* Then figure out how many of those we will actually use, based on
|
|
|
|
* assigning an equal number of cores to each I/O queue.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* One vector for per core I/O queue, plus one vector for admin queue. */
|
|
|
|
num_vectors_available = min(pci_msix_count(dev), mp_ncpus + 1);
|
|
|
|
if (pci_alloc_msix(dev, &num_vectors_available) != 0) {
|
|
|
|
num_vectors_available = 0;
|
|
|
|
}
|
|
|
|
pci_release_msi(dev);
|
|
|
|
|
|
|
|
if (ctrlr->force_intx || num_vectors_available < 2) {
|
2016-01-07 16:12:42 +00:00
|
|
|
nvme_ctrlr_configure_intx(ctrlr);
|
|
|
|
return;
|
|
|
|
}
|
2013-03-26 20:32:57 +00:00
|
|
|
|
2016-01-07 20:32:04 +00:00
|
|
|
/*
|
|
|
|
* Do not use all vectors for I/O queues - one must be saved for the
|
|
|
|
* admin queue.
|
|
|
|
*/
|
|
|
|
ctrlr->num_cpus_per_ioq = max(min_cpus_per_ioq,
|
2016-01-07 20:35:26 +00:00
|
|
|
howmany(mp_ncpus, num_vectors_available - 1));
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-01-07 20:35:26 +00:00
|
|
|
ctrlr->num_io_queues = howmany(mp_ncpus, ctrlr->num_cpus_per_ioq);
|
2015-07-23 15:35:08 +00:00
|
|
|
num_vectors_requested = ctrlr->num_io_queues + 1;
|
|
|
|
num_vectors_allocated = num_vectors_requested;
|
2016-01-07 16:18:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Now just allocate the number of vectors we need. This should
|
|
|
|
* succeed, since we previously called pci_alloc_msix()
|
|
|
|
* successfully returning at least this many vectors, but just to
|
|
|
|
* be safe, if something goes wrong just revert to INTx.
|
|
|
|
*/
|
2015-07-23 15:35:08 +00:00
|
|
|
if (pci_alloc_msix(dev, &num_vectors_allocated) != 0) {
|
2016-01-07 16:12:42 +00:00
|
|
|
nvme_ctrlr_configure_intx(ctrlr);
|
|
|
|
return;
|
2016-01-07 16:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (num_vectors_allocated < num_vectors_requested) {
|
|
|
|
pci_release_msi(dev);
|
2016-01-07 16:18:32 +00:00
|
|
|
nvme_ctrlr_configure_intx(ctrlr);
|
|
|
|
return;
|
2014-03-18 18:10:35 +00:00
|
|
|
}
|
2016-01-07 16:18:32 +00:00
|
|
|
|
|
|
|
ctrlr->msix_enabled = 1;
|
2016-01-07 16:12:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
nvme_ctrlr_construct(struct nvme_controller *ctrlr, device_t dev)
|
|
|
|
{
|
2018-04-30 23:05:57 +00:00
|
|
|
struct make_dev_args md_args;
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t cap_lo;
|
|
|
|
uint32_t cap_hi;
|
|
|
|
uint8_t to;
|
|
|
|
uint8_t dstrd;
|
|
|
|
uint8_t mpsmin;
|
|
|
|
int status, timeout_period;
|
2014-03-18 18:10:35 +00:00
|
|
|
|
2016-01-07 16:12:42 +00:00
|
|
|
ctrlr->dev = dev;
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2016-01-07 16:12:42 +00:00
|
|
|
mtx_init(&ctrlr->lock, "nvme ctrlr lock", NULL, MTX_DEF);
|
|
|
|
|
|
|
|
status = nvme_ctrlr_allocate_bar(ctrlr);
|
|
|
|
|
|
|
|
if (status != 0)
|
|
|
|
return (status);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Software emulators may set the doorbell stride to something
|
|
|
|
* other than zero, but this driver is not set up to handle that.
|
|
|
|
*/
|
2018-02-22 13:32:31 +00:00
|
|
|
cap_hi = nvme_mmio_read_4(ctrlr, cap_hi);
|
|
|
|
dstrd = (cap_hi >> NVME_CAP_HI_REG_DSTRD_SHIFT) & NVME_CAP_HI_REG_DSTRD_MASK;
|
|
|
|
if (dstrd != 0)
|
2016-01-07 16:12:42 +00:00
|
|
|
return (ENXIO);
|
|
|
|
|
2018-02-22 13:32:31 +00:00
|
|
|
mpsmin = (cap_hi >> NVME_CAP_HI_REG_MPSMIN_SHIFT) & NVME_CAP_HI_REG_MPSMIN_MASK;
|
|
|
|
ctrlr->min_page_size = 1 << (12 + mpsmin);
|
2016-01-07 16:12:42 +00:00
|
|
|
|
|
|
|
/* Get ready timeout value from controller, in units of 500ms. */
|
2018-02-22 13:32:31 +00:00
|
|
|
cap_lo = nvme_mmio_read_4(ctrlr, cap_lo);
|
|
|
|
to = (cap_lo >> NVME_CAP_LO_REG_TO_SHIFT) & NVME_CAP_LO_REG_TO_MASK;
|
|
|
|
ctrlr->ready_timeout_in_ms = to * 500;
|
2016-01-07 16:12:42 +00:00
|
|
|
|
|
|
|
timeout_period = NVME_DEFAULT_TIMEOUT_PERIOD;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.timeout_period", &timeout_period);
|
|
|
|
timeout_period = min(timeout_period, NVME_MAX_TIMEOUT_PERIOD);
|
|
|
|
timeout_period = max(timeout_period, NVME_MIN_TIMEOUT_PERIOD);
|
|
|
|
ctrlr->timeout_period = timeout_period;
|
|
|
|
|
|
|
|
nvme_retry_count = NVME_DEFAULT_RETRY_COUNT;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.retry_count", &nvme_retry_count);
|
|
|
|
|
|
|
|
ctrlr->enable_aborts = 0;
|
|
|
|
TUNABLE_INT_FETCH("hw.nvme.enable_aborts", &ctrlr->enable_aborts);
|
|
|
|
|
|
|
|
nvme_ctrlr_setup_interrupts(ctrlr);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2013-06-26 23:27:17 +00:00
|
|
|
ctrlr->max_xfer_size = NVME_MAX_XFER_SIZE;
|
2016-11-08 00:24:49 +00:00
|
|
|
if (nvme_ctrlr_construct_admin_qpair(ctrlr) != 0)
|
|
|
|
return (ENXIO);
|
2012-09-17 19:23:01 +00:00
|
|
|
|
2013-03-26 19:58:17 +00:00
|
|
|
ctrlr->taskqueue = taskqueue_create("nvme_taskq", M_WAITOK,
|
|
|
|
taskqueue_thread_enqueue, &ctrlr->taskqueue);
|
|
|
|
taskqueue_start_threads(&ctrlr->taskqueue, 1, PI_DISK, "nvme taskq");
|
|
|
|
|
2013-03-26 20:56:58 +00:00
|
|
|
ctrlr->is_resetting = 0;
|
2014-03-18 18:09:08 +00:00
|
|
|
ctrlr->is_initialized = 0;
|
|
|
|
ctrlr->notification_sent = 0;
|
2013-03-26 21:58:38 +00:00
|
|
|
TASK_INIT(&ctrlr->reset_task, 0, nvme_ctrlr_reset_task, ctrlr);
|
|
|
|
TASK_INIT(&ctrlr->fail_req_task, 0, nvme_ctrlr_fail_req_task, ctrlr);
|
|
|
|
STAILQ_INIT(&ctrlr->fail_req);
|
|
|
|
ctrlr->is_failed = FALSE;
|
2013-03-26 20:56:58 +00:00
|
|
|
|
2018-04-30 23:05:57 +00:00
|
|
|
make_dev_args_init(&md_args);
|
|
|
|
md_args.mda_devsw = &nvme_ctrlr_cdevsw;
|
|
|
|
md_args.mda_uid = UID_ROOT;
|
|
|
|
md_args.mda_gid = GID_WHEEL;
|
|
|
|
md_args.mda_mode = 0600;
|
|
|
|
md_args.mda_unit = device_get_unit(dev);
|
|
|
|
md_args.mda_si_drv1 = (void *)ctrlr;
|
|
|
|
status = make_dev_s(&md_args, &ctrlr->cdev, "nvme%d",
|
|
|
|
device_get_unit(dev));
|
|
|
|
if (status != 0)
|
|
|
|
return (ENXIO);
|
|
|
|
|
2012-09-17 19:23:01 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2012-10-18 00:39:29 +00:00
|
|
|
|
2013-03-26 18:34:19 +00:00
|
|
|
void
|
|
|
|
nvme_ctrlr_destruct(struct nvme_controller *ctrlr, device_t dev)
|
|
|
|
{
|
2013-03-26 18:37:36 +00:00
|
|
|
int i;
|
2013-03-26 18:34:19 +00:00
|
|
|
|
2018-04-30 23:05:57 +00:00
|
|
|
if (ctrlr->resource == NULL)
|
|
|
|
goto nores;
|
2013-03-26 19:58:17 +00:00
|
|
|
|
2018-05-25 03:34:33 +00:00
|
|
|
nvme_notify_fail_consumers(ctrlr);
|
|
|
|
|
2013-03-26 19:50:46 +00:00
|
|
|
for (i = 0; i < NVME_MAX_NAMESPACES; i++)
|
|
|
|
nvme_ns_destruct(&ctrlr->ns[i]);
|
2013-03-26 18:34:19 +00:00
|
|
|
|
|
|
|
if (ctrlr->cdev)
|
|
|
|
destroy_dev(ctrlr->cdev);
|
|
|
|
|
|
|
|
for (i = 0; i < ctrlr->num_io_queues; i++) {
|
2018-03-14 23:01:18 +00:00
|
|
|
nvme_ctrlr_destroy_qpair(ctrlr, &ctrlr->ioq[i]);
|
2013-03-26 18:34:19 +00:00
|
|
|
nvme_io_qpair_destroy(&ctrlr->ioq[i]);
|
|
|
|
}
|
|
|
|
free(ctrlr->ioq, M_NVME);
|
|
|
|
|
|
|
|
nvme_admin_qpair_destroy(&ctrlr->adminq);
|
|
|
|
|
2018-04-30 23:05:57 +00:00
|
|
|
/*
|
|
|
|
* Notify the controller of a shutdown, even though this is due to
|
|
|
|
* a driver unload, not a system shutdown (this path is not invoked
|
|
|
|
* during shutdown). This ensures the controller receives a
|
|
|
|
* shutdown notification in case the system is shutdown before
|
|
|
|
* reloading the driver.
|
|
|
|
*/
|
|
|
|
nvme_ctrlr_shutdown(ctrlr);
|
2013-03-26 18:34:19 +00:00
|
|
|
|
2018-04-30 23:05:57 +00:00
|
|
|
nvme_ctrlr_disable(ctrlr);
|
|
|
|
|
|
|
|
if (ctrlr->taskqueue)
|
|
|
|
taskqueue_free(ctrlr->taskqueue);
|
2013-03-26 18:34:19 +00:00
|
|
|
|
|
|
|
if (ctrlr->tag)
|
|
|
|
bus_teardown_intr(ctrlr->dev, ctrlr->res, ctrlr->tag);
|
|
|
|
|
|
|
|
if (ctrlr->res)
|
|
|
|
bus_release_resource(ctrlr->dev, SYS_RES_IRQ,
|
|
|
|
rman_get_rid(ctrlr->res), ctrlr->res);
|
|
|
|
|
|
|
|
if (ctrlr->msix_enabled)
|
|
|
|
pci_release_msi(dev);
|
2018-04-30 23:05:57 +00:00
|
|
|
|
|
|
|
if (ctrlr->bar4_resource != NULL) {
|
|
|
|
bus_release_resource(dev, SYS_RES_MEMORY,
|
|
|
|
ctrlr->bar4_resource_id, ctrlr->bar4_resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
bus_release_resource(dev, SYS_RES_MEMORY,
|
|
|
|
ctrlr->resource_id, ctrlr->resource);
|
|
|
|
|
|
|
|
nores:
|
|
|
|
mtx_destroy(&ctrlr->lock);
|
2013-03-26 18:34:19 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 21:47:08 +00:00
|
|
|
void
|
|
|
|
nvme_ctrlr_shutdown(struct nvme_controller *ctrlr)
|
|
|
|
{
|
2018-02-22 13:32:31 +00:00
|
|
|
uint32_t cc;
|
|
|
|
uint32_t csts;
|
|
|
|
int ticks = 0;
|
|
|
|
|
|
|
|
cc = nvme_mmio_read_4(ctrlr, cc);
|
|
|
|
cc &= ~(NVME_CC_REG_SHN_MASK << NVME_CC_REG_SHN_SHIFT);
|
|
|
|
cc |= NVME_SHN_NORMAL << NVME_CC_REG_SHN_SHIFT;
|
|
|
|
nvme_mmio_write_4(ctrlr, cc, cc);
|
|
|
|
|
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
|
|
|
while ((NVME_CSTS_GET_SHST(csts) != NVME_SHST_COMPLETE) && (ticks++ < 5*hz)) {
|
2013-08-13 21:47:08 +00:00
|
|
|
pause("nvme shn", 1);
|
2018-02-22 13:32:31 +00:00
|
|
|
csts = nvme_mmio_read_4(ctrlr, csts);
|
2013-08-13 21:47:08 +00:00
|
|
|
}
|
2018-02-22 13:32:31 +00:00
|
|
|
if (NVME_CSTS_GET_SHST(csts) != NVME_SHST_COMPLETE)
|
2013-08-13 21:47:08 +00:00
|
|
|
nvme_printf(ctrlr, "did not complete shutdown within 5 seconds "
|
|
|
|
"of notification\n");
|
|
|
|
}
|
|
|
|
|
2012-10-18 00:39:29 +00:00
|
|
|
void
|
|
|
|
nvme_ctrlr_submit_admin_request(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_request *req)
|
|
|
|
{
|
2012-10-18 00:41:31 +00:00
|
|
|
|
2012-10-18 00:43:25 +00:00
|
|
|
nvme_qpair_submit_request(&ctrlr->adminq, req);
|
2012-10-18 00:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nvme_ctrlr_submit_io_request(struct nvme_controller *ctrlr,
|
|
|
|
struct nvme_request *req)
|
|
|
|
{
|
|
|
|
struct nvme_qpair *qpair;
|
|
|
|
|
2016-01-07 16:18:32 +00:00
|
|
|
qpair = &ctrlr->ioq[curcpu / ctrlr->num_cpus_per_ioq];
|
2012-10-18 00:43:25 +00:00
|
|
|
nvme_qpair_submit_request(qpair, req);
|
2012-10-18 00:39:29 +00:00
|
|
|
}
|
2013-03-26 18:39:54 +00:00
|
|
|
|
|
|
|
device_t
|
|
|
|
nvme_ctrlr_get_device(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (ctrlr->dev);
|
|
|
|
}
|
2013-03-26 19:52:57 +00:00
|
|
|
|
|
|
|
const struct nvme_controller_data *
|
|
|
|
nvme_ctrlr_get_data(struct nvme_controller *ctrlr)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (&ctrlr->cdata);
|
|
|
|
}
|