summaryrefslogtreecommitdiff
path: root/nvif/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'nvif/event.h')
-rw-r--r--nvif/event.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/nvif/event.h b/nvif/event.h
index 6daced098..cef3ef103 100644
--- a/nvif/event.h
+++ b/nvif/event.h
@@ -1,16 +1,39 @@
#ifndef __NVIF_EVENT_H__
#define __NVIF_EVENT_H__
+struct nvif_notify_req_v0 {
+ __u8 version;
+ __u8 reply;
+ __u8 pad02[5];
+#define NVIF_NOTIFY_V0_ROUTE_NVIF 0x00
+ __u8 route;
+ __u64 token; /* must be unique */
+ __u8 data[]; /* request data (below) */
+};
+
+struct nvif_notify_rep_v0 {
+ __u8 version;
+ __u8 pad01[6];
+ __u8 route;
+ __u64 token;
+ __u8 data[]; /* reply data (below) */
+};
+
struct nvif_notify_head_req_v0 {
+ /* nvif_notify_req ... */
__u8 version;
__u8 head;
+ __u8 pad02[6];
};
struct nvif_notify_head_rep_v0 {
+ /* nvif_notify_rep ... */
__u8 version;
+ __u8 pad01[7];
};
struct nvif_notify_conn_req_v0 {
+ /* nvif_notify_req ... */
__u8 version;
#define NVIF_NOTIFY_CONN_V0_PLUG 0x01
#define NVIF_NOTIFY_CONN_V0_UNPLUG 0x02
@@ -18,11 +41,14 @@ struct nvif_notify_conn_req_v0 {
#define NVIF_NOTIFY_CONN_V0_ANY 0x07
__u8 mask;
__u8 conn;
+ __u8 pad03[5];
};
struct nvif_notify_conn_rep_v0 {
+ /* nvif_notify_rep ... */
__u8 version;
__u8 mask;
+ __u8 pad02[6];
};
#endif