49 lines
2.0 KiB
C
49 lines
2.0 KiB
C
|
/*-
|
||
|
* Copyright (c) 2015 Netflix, Inc
|
||
|
* 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,
|
||
|
* without modification, immediately at the beginning of the file.
|
||
|
* 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 ``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 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.
|
||
|
*
|
||
|
* $FreeBSD$
|
||
|
*/
|
||
|
|
||
|
#ifndef CAM_NVME_NVME_ALL_H
|
||
|
#define CAM_NVME_NVME_ALL_H 1
|
||
|
|
||
|
#include <dev/nvme/nvme.h>
|
||
|
|
||
|
struct ccb_nvmeio;
|
||
|
|
||
|
#define NVME_REV_1 1 /* Supports NVMe 1.2 or earlier */
|
||
|
|
||
|
void nvme_ns_cmd(struct ccb_nvmeio *nvmeio, uint8_t cmd, uint32_t nsid,
|
||
|
uint32_t cdw10, uint32_t cdw11, uint32_t cdw12, uint32_t cdw13,
|
||
|
uint32_t cdw14, uint32_t cdw15);
|
||
|
|
||
|
int nvme_identify_match(caddr_t identbuffer, caddr_t table_entry);
|
||
|
|
||
|
void nvme_print_ident(const struct nvme_controller_data *, const struct nvme_namespace_data *);
|
||
|
const char *nvme_op_string(const struct nvme_command *);
|
||
|
const char *nvme_cmd_string(const struct nvme_command *, char *, size_t);
|
||
|
|
||
|
#endif /* CAM_NVME_NVME_ALL_H */
|