1 /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
3 * Copyright(c) 2003-2015 Intel Corporation. All rights reserved.
4 * Intel Management Engine Interface (Intel MEI) Linux driver
5 * Intel MEI Interface Header
10 #include <linux/mei_uuid.h>
13 * This IOCTL is used to associate the current file descriptor with a
14 * FW Client (given by UUID). This opens a communication channel
15 * between a host client and a FW client. From this point every read and write
16 * will communicate with the associated FW client.
17 * Only in close() (file_operation release()) is the communication between
18 * the clients disconnected.
20 * The IOCTL argument is a struct with a union that contains
21 * the input parameter and the output parameter for this IOCTL.
23 * The input parameter is UUID of the FW Client.
24 * The output parameter is the properties of the FW client
25 * (FW protocol version and max message size).
28 #define IOCTL_MEI_CONNECT_CLIENT \
29 _IOWR('H' , 0x01, struct mei_connect_client_data)
32 * Intel MEI client information struct
36 __u8 protocol_version
;
41 * IOCTL Connect Client Data structure
43 struct mei_connect_client_data
{
45 uuid_le in_client_uuid
;
46 struct mei_client out_client_properties
;
51 * DOC: set and unset event notification for a connected client
53 * The IOCTL argument is 1 for enabling event notification and 0 for
54 * disabling the service.
55 * Return: -EOPNOTSUPP if the devices doesn't support the feature
57 #define IOCTL_MEI_NOTIFY_SET _IOW('H', 0x02, __u32)
60 * DOC: retrieve notification
62 * The IOCTL output argument is 1 if an event was pending and 0 otherwise.
63 * The ioctl has to be called in order to acknowledge pending event.
65 * Return: -EOPNOTSUPP if the devices doesn't support the feature
67 #define IOCTL_MEI_NOTIFY_GET _IOR('H', 0x03, __u32)
70 * struct mei_connect_client_vtag - mei client information struct with vtag
72 * @in_client_uuid: UUID of client to connect
74 * @reserved: reserved for future use
76 struct mei_connect_client_vtag
{
77 uuid_le in_client_uuid
;
83 * struct mei_connect_client_data_vtag - IOCTL connect data union
85 * @connect: input connect data
86 * @out_client_properties: output client data
88 struct mei_connect_client_data_vtag
{
90 struct mei_connect_client_vtag connect
;
91 struct mei_client out_client_properties
;
97 * This IOCTL is used to associate the current file descriptor with a
98 * FW Client (given by UUID), and virtual tag (vtag).
99 * The IOCTL opens a communication channel between a host client and
100 * a FW client on a tagged channel. From this point on, every read
101 * and write will communicate with the associated FW client
102 * on the tagged channel.
103 * Upon close() the communication is terminated.
105 * The IOCTL argument is a struct with a union that contains
106 * the input parameter and the output parameter for this IOCTL.
108 * The input parameter is UUID of the FW Client, a vtag [0,255].
109 * The output parameter is the properties of the FW client
110 * (FW protocol version and max message size).
112 * Clients that do not support tagged connection
113 * will respond with -EOPNOTSUPP.
115 #define IOCTL_MEI_CONNECT_CLIENT_VTAG \
116 _IOWR('H', 0x04, struct mei_connect_client_data_vtag)
118 #endif /* _LINUX_MEI_H */