mei.h revision 05d08e9716b5974d6ed08973f44930804890b902
1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _LINUX_MEI_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _LINUX_MEI_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/uuid.h>
22d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define IOCTL_MEI_CONNECT_CLIENT _IOWR('H', 0x01, struct mei_connect_client_data)
23a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct mei_client {
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 max_msg_length;
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 protocol_version;
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 reserved[3];
28a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct mei_connect_client_data {
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  union {
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    uuid_le in_client_uuid;
33a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct mei_client out_client_properties;
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  };
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
3705d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#define IOCTL_MEI_NOTIFY_SET _IOW('H', 0x02, __u32)
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
3905d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#define IOCTL_MEI_NOTIFY_GET _IOR('H', 0x03, __u32)
4005d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#endif
41