diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/tegra_vgpu_t19x.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/tegra_vgpu_t19x.h b/include/linux/tegra_vgpu_t19x.h index c2814f16..fe39230e 100644 --- a/include/linux/tegra_vgpu_t19x.h +++ b/include/linux/tegra_vgpu_t19x.h | |||
@@ -16,6 +16,7 @@ | |||
16 | 16 | ||
17 | #define TEGRA_VGPU_CMD_ALLOC_CTX_HEADER 100 | 17 | #define TEGRA_VGPU_CMD_ALLOC_CTX_HEADER 100 |
18 | #define TEGRA_VGPU_CMD_FREE_CTX_HEADER 101 | 18 | #define TEGRA_VGPU_CMD_FREE_CTX_HEADER 101 |
19 | #define TEGRA_VGPU_CMD_MAP_SYNCPT 102 | ||
19 | 20 | ||
20 | struct tegra_vgpu_alloc_ctx_header_params { | 21 | struct tegra_vgpu_alloc_ctx_header_params { |
21 | u64 ch_handle; | 22 | u64 ch_handle; |
@@ -26,9 +27,18 @@ struct tegra_vgpu_free_ctx_header_params { | |||
26 | u64 ch_handle; | 27 | u64 ch_handle; |
27 | }; | 28 | }; |
28 | 29 | ||
30 | struct tegra_vgpu_map_syncpt_params { | ||
31 | u64 as_handle; | ||
32 | u64 gpu_va; | ||
33 | u64 len; | ||
34 | u64 offset; | ||
35 | u8 prot; | ||
36 | }; | ||
37 | |||
29 | union tegra_vgpu_t19x_params { | 38 | union tegra_vgpu_t19x_params { |
30 | struct tegra_vgpu_alloc_ctx_header_params alloc_ctx_header; | 39 | struct tegra_vgpu_alloc_ctx_header_params alloc_ctx_header; |
31 | struct tegra_vgpu_free_ctx_header_params free_ctx_header; | 40 | struct tegra_vgpu_free_ctx_header_params free_ctx_header; |
41 | struct tegra_vgpu_map_syncpt_params map_syncpt; | ||
32 | }; | 42 | }; |
33 | 43 | ||
34 | #define TEGRA_VGPU_ATTRIB_MAX_SUBCTX_COUNT 100 | 44 | #define TEGRA_VGPU_ATTRIB_MAX_SUBCTX_COUNT 100 |