1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _UAPI_RPMSG_H_
8 #define _UAPI_RPMSG_H_
9 #include <linux/ioctl.h>
10 #include <linux/types.h>
11 #define RPMSG_ADDR_ANY 0xFFFFFFFF
12 struct rpmsg_endpoint_info {
13   char name[32];
14   __u32 src;
15   __u32 dst;
16 };
17 #define RPMSG_CREATE_EPT_IOCTL _IOW(0xb5, 0x1, struct rpmsg_endpoint_info)
18 #define RPMSG_DESTROY_EPT_IOCTL _IO(0xb5, 0x2)
19 #define RPMSG_CREATE_DEV_IOCTL _IOW(0xb5, 0x3, struct rpmsg_endpoint_info)
20 #define RPMSG_RELEASE_DEV_IOCTL _IOW(0xb5, 0x4, struct rpmsg_endpoint_info)
21 #define RPMSG_GET_OUTGOING_FLOWCONTROL _IOR(0xb5, 0x5, int)
22 #define RPMSG_SET_INCOMING_FLOWCONTROL _IOR(0xb5, 0x6, int)
23 #endif
24