cxl/pmem: Add "Set Passphrase" security command support
[linux-block.git] / include / uapi / linux / cxl_mem.h
CommitLineData
583fa5e7
BW
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2/*
3 * CXL IOCTLs for Memory Devices
4 */
5
6#ifndef _UAPI_CXL_MEM_H_
7#define _UAPI_CXL_MEM_H_
8
9#include <linux/types.h>
10
11/**
12 * DOC: UAPI
13 *
14 * Not all of all commands that the driver supports are always available for use
15 * by userspace. Userspace must check the results from the QUERY command in
16 * order to determine the live set of commands.
17 */
18
19#define CXL_MEM_QUERY_COMMANDS _IOR(0xCE, 1, struct cxl_mem_query_commands)
20#define CXL_MEM_SEND_COMMAND _IOWR(0xCE, 2, struct cxl_send_command)
21
22#define CXL_CMDS \
23 ___C(INVALID, "Invalid Command"), \
24 ___C(IDENTIFY, "Identify Command"), \
13237183 25 ___C(RAW, "Raw device command"), \
472b1ce6 26 ___C(GET_SUPPORTED_LOGS, "Get Supported Logs"), \
57ee605b
BW
27 ___C(GET_FW_INFO, "Get FW Info"), \
28 ___C(GET_PARTITION_INFO, "Get Partition Information"), \
29 ___C(GET_LSA, "Get Label Storage Area"), \
30 ___C(GET_HEALTH_INFO, "Get Health Info"), \
31 ___C(GET_LOG, "Get Log"), \
87815ee9
BW
32 ___C(SET_PARTITION_INFO, "Set Partition Information"), \
33 ___C(SET_LSA, "Set Label Storage Area"), \
34 ___C(GET_ALERT_CONFIG, "Get Alert Configuration"), \
35 ___C(SET_ALERT_CONFIG, "Set Alert Configuration"), \
36 ___C(GET_SHUTDOWN_STATE, "Get Shutdown State"), \
37 ___C(SET_SHUTDOWN_STATE, "Set Shutdown State"), \
38 ___C(GET_POISON, "Get Poison List"), \
39 ___C(INJECT_POISON, "Inject Poison"), \
40 ___C(CLEAR_POISON, "Clear Poison"), \
41 ___C(GET_SCAN_MEDIA_CAPS, "Get Scan Media Capabilities"), \
42 ___C(SCAN_MEDIA, "Scan Media"), \
43 ___C(GET_SCAN_MEDIA, "Get Scan Media Results"), \
32828115 44 ___C(GET_SECURITY_STATE, "Get Security State"), \
99746940 45 ___C(SET_PASSPHRASE, "Set Passphrase"), \
583fa5e7
BW
46 ___C(MAX, "invalid / last command")
47
48#define ___C(a, b) CXL_MEM_COMMAND_ID_##a
49enum { CXL_CMDS };
50
51#undef ___C
52#define ___C(a, b) { b }
53static const struct {
54 const char *name;
9d1b3afd 55} cxl_command_names[] __attribute__((__unused__)) = { CXL_CMDS };
583fa5e7
BW
56
57/*
58 * Here's how this actually breaks out:
59 * cxl_command_names[] = {
60 * [CXL_MEM_COMMAND_ID_INVALID] = { "Invalid Command" },
61 * [CXL_MEM_COMMAND_ID_IDENTIFY] = { "Identify Command" },
62 * ...
63 * [CXL_MEM_COMMAND_ID_MAX] = { "invalid / last command" },
64 * };
65 */
66
67#undef ___C
68
69/**
70 * struct cxl_command_info - Command information returned from a query.
71 * @id: ID number for the command.
72 * @flags: Flags that specify command behavior.
26f89535
AS
73 * @size_in: Expected input size, or ~0 if variable length.
74 * @size_out: Expected output size, or ~0 if variable length.
583fa5e7
BW
75 *
76 * Represents a single command that is supported by both the driver and the
77 * hardware. This is returned as part of an array from the query ioctl. The
78 * following would be a command that takes a variable length input and returns 0
79 * bytes of output.
80 *
81 * - @id = 10
82 * - @flags = 0
26f89535 83 * - @size_in = ~0
583fa5e7
BW
84 * - @size_out = 0
85 *
86 * See struct cxl_mem_query_commands.
87 */
88struct cxl_command_info {
89 __u32 id;
90
91 __u32 flags;
92#define CXL_MEM_COMMAND_FLAG_MASK GENMASK(0, 0)
93
26f89535
AS
94 __u32 size_in;
95 __u32 size_out;
583fa5e7
BW
96};
97
98/**
99 * struct cxl_mem_query_commands - Query supported commands.
100 * @n_commands: In/out parameter. When @n_commands is > 0, the driver will
101 * return min(num_support_commands, n_commands). When @n_commands
102 * is 0, driver will return the number of total supported commands.
103 * @rsvd: Reserved for future use.
104 * @commands: Output array of supported commands. This array must be allocated
105 * by userspace to be at least min(num_support_commands, @n_commands)
106 *
107 * Allow userspace to query the available commands supported by both the driver,
108 * and the hardware. Commands that aren't supported by either the driver, or the
109 * hardware are not returned in the query.
110 *
111 * Examples:
112 *
113 * - { .n_commands = 0 } // Get number of supported commands
114 * - { .n_commands = 15, .commands = buf } // Return first 15 (or less)
115 * supported commands
116 *
117 * See struct cxl_command_info.
118 */
119struct cxl_mem_query_commands {
120 /*
121 * Input: Number of commands to return (space allocated by user)
122 * Output: Number of commands supported by the driver/hardware
123 *
124 * If n_commands is 0, kernel will only return number of commands and
125 * not try to populate commands[], thus allowing userspace to know how
126 * much space to allocate
127 */
128 __u32 n_commands;
129 __u32 rsvd;
130
131 struct cxl_command_info __user commands[]; /* out: supported commands */
132};
133
134/**
135 * struct cxl_send_command - Send a command to a memory device.
136 * @id: The command to send to the memory device. This must be one of the
137 * commands returned by the query command.
138 * @flags: Flags for the command (input).
13237183
BW
139 * @raw: Special fields for raw commands
140 * @raw.opcode: Opcode passed to hardware when using the RAW command.
141 * @raw.rsvd: Must be zero.
583fa5e7
BW
142 * @rsvd: Must be zero.
143 * @retval: Return value from the memory device (output).
144 * @in: Parameters associated with input payload.
145 * @in.size: Size of the payload to provide to the device (input).
146 * @in.rsvd: Must be zero.
147 * @in.payload: Pointer to memory for payload input, payload is little endian.
148 * @out: Parameters associated with output payload.
149 * @out.size: Size of the payload received from the device (input/output). This
150 * field is filled in by userspace to let the driver know how much
151 * space was allocated for output. It is populated by the driver to
152 * let userspace know how large the output payload actually was.
153 * @out.rsvd: Must be zero.
154 * @out.payload: Pointer to memory for payload output, payload is little endian.
155 *
156 * Mechanism for userspace to send a command to the hardware for processing. The
157 * driver will do basic validation on the command sizes. In some cases even the
158 * payload may be introspected. Userspace is required to allocate large enough
159 * buffers for size_out which can be variable length in certain situations.
160 */
161struct cxl_send_command {
162 __u32 id;
163 __u32 flags;
13237183
BW
164 union {
165 struct {
166 __u16 opcode;
167 __u16 rsvd;
168 } raw;
169 __u32 rsvd;
170 };
583fa5e7
BW
171 __u32 retval;
172
173 struct {
26f89535 174 __u32 size;
583fa5e7
BW
175 __u32 rsvd;
176 __u64 payload;
177 } in;
178
179 struct {
26f89535 180 __u32 size;
583fa5e7
BW
181 __u32 rsvd;
182 __u64 payload;
183 } out;
184};
185
186#endif