summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorPrashant Gaikwad <pgaikwad@nvidia.com>2016-09-15 10:28:01 -0400
committerBharat Nihalani <bnihalani@nvidia.com>2016-10-19 02:33:50 -0400
commitd77caf2cba2e02a3fcd8960f41ca8cc4c12bf26d (patch)
treeeae46246d450367098c8452f2ad0a73e3784a6e5 /include/linux
parentc4e510fb1451c3af2bea2352725e8d1607e8b5b7 (diff)
video: tegra: host: nvdla: add more info to task
Add below information to task descriptor - Address list - LUT data - Dynamic ROI Jira DLA-176 Change-Id: I067025da34a68a2d81c5e3829ac76c516ed8754b Signed-off-by: Prashant Gaikwad <pgaikwad@nvidia.com> Reviewed-on: http://git-master/r/1221382
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nvhost_nvdla_ioctl.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/nvhost_nvdla_ioctl.h b/include/linux/nvhost_nvdla_ioctl.h
index b0774d633..aba5ff554 100644
--- a/include/linux/nvhost_nvdla_ioctl.h
+++ b/include/linux/nvhost_nvdla_ioctl.h
@@ -120,9 +120,16 @@ struct nvdla_ctrl_ioctl_submit_task {
120 __u64 output_task_status; 120 __u64 output_task_status;
121 121
122 __u32 num_operations; 122 __u32 num_operations;
123 __u32 num_addresses; 123 __u32 num_luts;
124 struct nvdla_ctrl_mem_handle operation_desc; 124 struct nvdla_ctrl_mem_handle operation_desc;
125 struct nvdla_ctrl_mem_handle surface_desc; 125 struct nvdla_ctrl_mem_handle surface_desc;
126 struct nvdla_ctrl_mem_handle lut_data;
127
128 __u8 dynamic_roi;
129 struct nvdla_ctrl_mem_handle roi_desc_array;
130 struct nvdla_ctrl_mem_handle surface;
131
132 __u32 num_addresses;
126 struct nvdla_ctrl_mem_handle address_list; 133 struct nvdla_ctrl_mem_handle address_list;
127}; 134};
128 135