xref: /freebsd/sbin/nvmecontrol/nvmecontrol.h (revision 315ee00f)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (C) 2012-2013 Intel Corporation
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #ifndef __NVMECONTROL_H__
30 #define __NVMECONTROL_H__
31 
32 #include <dev/nvme/nvme.h>
33 #include "comnd.h"
34 
35 typedef void (*print_fn_t)(const struct nvme_controller_data *cdata, void *buf, uint32_t size);
36 
37 struct logpage_function {
38         SLIST_ENTRY(logpage_function)   link;
39 	uint8_t		log_page;
40 	const char     *vendor;
41 	const char     *name;
42 	print_fn_t	print_fn;
43 	size_t		size;
44 };
45 
46 #define NVME_LOGPAGE(unique, lp, vend, nam, fn, sz)			\
47 	static struct logpage_function unique ## _lpf = {		\
48 		.log_page = lp,						\
49 		.vendor = vend,						\
50 		.name = nam,						\
51 		.print_fn = fn, 					\
52 		.size = sz,						\
53 	} ;								\
54         static void logpage_reg_##unique(void) __attribute__((constructor)); \
55         static void logpage_reg_##unique(void) { logpage_register(&unique##_lpf); }
56 
57 #define DEFAULT_SIZE	(4096)
58 struct kv_name {
59 	uint32_t key;
60 	const char *name;
61 };
62 
63 const char *kv_lookup(const struct kv_name *kv, size_t kv_count, uint32_t key);
64 
65 void logpage_register(struct logpage_function *p);
66 #define NVME_CTRLR_PREFIX	"nvme"
67 #define NVME_NS_PREFIX		"ns"
68 
69 int open_dev(const char *str, int *fd, int write, int exit_on_error);
70 void get_nsid(int fd, char **ctrlr_str, uint32_t *nsid);
71 int read_controller_data(int fd, struct nvme_controller_data *cdata);
72 int read_namespace_data(int fd, uint32_t nsid, struct nvme_namespace_data *nsdata);
73 void print_hex(void *data, uint32_t length);
74 void print_namespace(struct nvme_namespace_data *nsdata);
75 void read_logpage(int fd, uint8_t log_page, uint32_t nsid, uint8_t lsp,
76     uint16_t lsi, uint8_t rae, void *payload, uint32_t payload_size);
77 void print_temp_C(uint16_t t);
78 void print_temp_K(uint16_t t);
79 void print_intel_add_smart(const struct nvme_controller_data *cdata __unused, void *buf, uint32_t size __unused);
80 
81 /* Utility Routines */
82 /*
83  * 128-bit integer augments to standard values. On i386 this
84  * doesn't exist, so we use 64-bit values. So, on 32-bit i386,
85  * you'll get truncated values until someone implement 128bit
86  * ints in software.
87  */
88 #define UINT128_DIG	39
89 #ifdef __i386__
90 typedef uint64_t uint128_t;
91 #else
92 typedef __uint128_t uint128_t;
93 #endif
94 
95 static __inline uint128_t
96 to128(void *p)
97 {
98 	return *(uint128_t *)p;
99 }
100 
101 uint64_t le48dec(const void *pp);
102 char * uint128_to_str(uint128_t u, char *buf, size_t buflen);
103 #endif
104