summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl_channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl_channel.h')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_channel.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_channel.h b/drivers/gpu/nvgpu/common/linux/ioctl_channel.h
index 235d84ef..3ea8d765 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_channel.h
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_channel.h
@@ -15,11 +15,20 @@
15 15
16#include <linux/fs.h> 16#include <linux/fs.h>
17 17
18#include "gk20a/css_gr_gk20a.h"
19
18struct inode; 20struct inode;
19struct file; 21struct file;
20struct gk20a; 22struct gk20a;
21struct nvgpu_channel_open_args; 23struct nvgpu_channel_open_args;
22 24
25struct gk20a_cs_snapshot_client_linux {
26 struct gk20a_cs_snapshot_client cs_client;
27
28 u32 dmabuf_fd;
29 struct dma_buf *dma_handler;
30};
31
23int gk20a_channel_open(struct inode *inode, struct file *filp); 32int gk20a_channel_open(struct inode *inode, struct file *filp);
24int gk20a_channel_release(struct inode *inode, struct file *filp); 33int gk20a_channel_release(struct inode *inode, struct file *filp);
25long gk20a_channel_ioctl(struct file *filp, 34long gk20a_channel_ioctl(struct file *filp,
@@ -27,6 +36,8 @@ long gk20a_channel_ioctl(struct file *filp,
27int gk20a_channel_open_ioctl(struct gk20a *g, 36int gk20a_channel_open_ioctl(struct gk20a *g,
28 struct nvgpu_channel_open_args *args); 37 struct nvgpu_channel_open_args *args);
29 38
39int gk20a_channel_free_cycle_stats_snapshot(struct channel_gk20a *ch);
40
30extern const struct file_operations gk20a_event_id_ops; 41extern const struct file_operations gk20a_event_id_ops;
31extern const struct file_operations gk20a_channel_ops; 42extern const struct file_operations gk20a_channel_ops;
32 43