Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F106090247
D44706.id137976.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D44706.id137976.diff
View Options
diff --git a/sys/dev/nvme/nvme.h b/sys/dev/nvme/nvme.h
--- a/sys/dev/nvme/nvme.h
+++ b/sys/dev/nvme/nvme.h
@@ -44,6 +44,8 @@
#define NVME_IO_TEST _IOWR('n', 100, struct nvme_io_test)
#define NVME_BIO_TEST _IOWR('n', 101, struct nvme_io_test)
+/* NB: Fabrics-specific ioctls defined in nvmf.h start at 200. */
+
/*
* Macros to deal with NVME revisions, as defined VS register
*/
diff --git a/sys/dev/nvmf/nvmf.h b/sys/dev/nvmf/nvmf.h
new file mode 100644
--- /dev/null
+++ b/sys/dev/nvmf/nvmf.h
@@ -0,0 +1,100 @@
+/*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
+ * Copyright (c) 2022-2024 Chelsio Communications, Inc.
+ * Written by: John Baldwin <jhb@FreeBSD.org>
+ *
+ * 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.
+ */
+
+#ifndef __NVMF_H__
+#define __NVMF_H__
+
+#include <sys/ioccom.h>
+#ifndef _KERNEL
+#include <stdbool.h>
+#endif
+
+/*
+ * Default settings in Fabrics controllers. These match values used by the
+ * Linux target.
+ */
+#define NVMF_MAX_IO_ENTRIES (1024)
+#define NVMF_CC_EN_TIMEOUT (15) /* In 500ms units */
+
+/* Allows for a 16k data buffer + SQE */
+#define NVMF_IOCCSZ (sizeof(struct nvme_command) + 16 * 1024)
+#define NVMF_IORCSZ (sizeof(struct nvme_completion))
+
+#define NVMF_NN (1024)
+
+struct nvmf_handoff_qpair_params {
+ bool admin;
+ bool sq_flow_control;
+ u_int qsize;
+ uint16_t sqhd;
+ uint16_t sqtail; /* host only */
+ union {
+ struct {
+ int fd;
+ uint8_t rxpda;
+ uint8_t txpda;
+ bool header_digests;
+ bool data_digests;
+ uint32_t maxr2t;
+ uint32_t maxh2cdata;
+ uint32_t max_icd;
+ } tcp;
+ };
+};
+
+struct nvmf_handoff_host {
+ u_int trtype;
+ u_int num_io_queues;
+ u_int kato;
+ struct nvmf_handoff_qpair_params admin;
+ struct nvmf_handoff_qpair_params *io;
+ const struct nvme_controller_data *cdata;
+};
+
+struct nvmf_reconnect_params {
+ uint16_t cntlid;
+ char subnqn[256];
+};
+
+struct nvmf_handoff_controller_qpair {
+ u_int trtype;
+ struct nvmf_handoff_qpair_params params;
+ const struct nvmf_fabric_connect_cmd *cmd;
+ const struct nvmf_fabric_connect_data *data;
+};
+
+/* Operations on /dev/nvmf */
+#define NVMF_HANDOFF_HOST _IOW('n', 200, struct nvmf_handoff_host)
+#define NVMF_DISCONNECT_HOST _IOW('n', 201, const char *)
+#define NVMF_DISCONNECT_ALL _IO('n', 202)
+
+/* Operations on /dev/nvmeX */
+#define NVMF_RECONNECT_PARAMS _IOR('n', 203, struct nvmf_reconnect_params)
+#define NVMF_RECONNECT_HOST _IOW('n', 204, struct nvmf_handoff_host)
+
+#endif /* !__NVMF_H__ */
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 26, 5:54 AM (9 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15601857
Default Alt Text
D44706.id137976.diff (3 KB)
Attached To
Mode
D44706: nvmf.h: New header defining ioctls for NVMe over Fabrics
Attached
Detach File
Event Timeline
Log In to Comment