summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_as.c5
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_as.h4
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_ctrl.c3
3 files changed, 9 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_as.c b/drivers/gpu/nvgpu/common/linux/ioctl_as.c
index f23dc53c..848fee04 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_as.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_as.c
@@ -112,7 +112,6 @@ static int gk20a_as_ioctl_map_buffer_batch(
112 struct gk20a_as_share *as_share, 112 struct gk20a_as_share *as_share,
113 struct nvgpu_as_map_buffer_batch_args *args) 113 struct nvgpu_as_map_buffer_batch_args *args)
114{ 114{
115 struct gk20a *g = as_share->vm->mm->g;
116 u32 i; 115 u32 i;
117 int err = 0; 116 int err = 0;
118 117
@@ -127,8 +126,8 @@ static int gk20a_as_ioctl_map_buffer_batch(
127 126
128 gk20a_dbg_fn(""); 127 gk20a_dbg_fn("");
129 128
130 if (args->num_unmaps > g->gpu_characteristics.map_buffer_batch_limit || 129 if (args->num_unmaps > NVGPU_IOCTL_AS_MAP_BUFFER_BATCH_LIMIT ||
131 args->num_maps > g->gpu_characteristics.map_buffer_batch_limit) 130 args->num_maps > NVGPU_IOCTL_AS_MAP_BUFFER_BATCH_LIMIT)
132 return -EINVAL; 131 return -EINVAL;
133 132
134 nvgpu_vm_mapping_batch_start(&batch); 133 nvgpu_vm_mapping_batch_start(&batch);
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_as.h b/drivers/gpu/nvgpu/common/linux/ioctl_as.h
index ae6690a1..b3de3782 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_as.h
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_as.h
@@ -18,6 +18,10 @@
18struct inode; 18struct inode;
19struct file; 19struct file;
20 20
21/* MAP_BUFFER_BATCH_LIMIT: the upper limit for num_unmaps and
22 * num_maps */
23#define NVGPU_IOCTL_AS_MAP_BUFFER_BATCH_LIMIT 256
24
21/* struct file_operations driver interface */ 25/* struct file_operations driver interface */
22int gk20a_as_dev_open(struct inode *inode, struct file *filp); 26int gk20a_as_dev_open(struct inode *inode, struct file *filp);
23int gk20a_as_dev_release(struct inode *inode, struct file *filp); 27int gk20a_as_dev_release(struct inode *inode, struct file *filp);
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_ctrl.c b/drivers/gpu/nvgpu/common/linux/ioctl_ctrl.c
index 3c6b1b26..b77855f4 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_ctrl.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_ctrl.c
@@ -34,6 +34,7 @@
34 34
35#include "ioctl_ctrl.h" 35#include "ioctl_ctrl.h"
36#include "ioctl_dbg.h" 36#include "ioctl_dbg.h"
37#include "ioctl_as.h"
37#ifdef CONFIG_TEGRA_19x_GPU 38#ifdef CONFIG_TEGRA_19x_GPU
38#include "common/linux/ioctl_ctrl_t19x.h" 39#include "common/linux/ioctl_ctrl_t19x.h"
39#endif 40#endif
@@ -209,6 +210,8 @@ gk20a_ctrl_ioctl_gpu_characteristics(
209 pgpu->impl = g->params.gpu_impl; 210 pgpu->impl = g->params.gpu_impl;
210 pgpu->rev = g->params.gpu_rev; 211 pgpu->rev = g->params.gpu_rev;
211 pgpu->reg_ops_limit = NVGPU_IOCTL_DBG_REG_OPS_LIMIT; 212 pgpu->reg_ops_limit = NVGPU_IOCTL_DBG_REG_OPS_LIMIT;
213 pgpu->map_buffer_batch_limit = nvgpu_is_enabled(g, NVGPU_SUPPORT_MAP_BUFFER_BATCH) ?
214 NVGPU_IOCTL_AS_MAP_BUFFER_BATCH_LIMIT : 0;
212 pgpu->twod_class = g->ops.get_litter_value(g, GPU_LIT_TWOD_CLASS); 215 pgpu->twod_class = g->ops.get_litter_value(g, GPU_LIT_TWOD_CLASS);
213 pgpu->threed_class = g->ops.get_litter_value(g, GPU_LIT_THREED_CLASS); 216 pgpu->threed_class = g->ops.get_litter_value(g, GPU_LIT_THREED_CLASS);
214 pgpu->compute_class = g->ops.get_litter_value(g, GPU_LIT_COMPUTE_CLASS); 217 pgpu->compute_class = g->ops.get_litter_value(g, GPU_LIT_COMPUTE_CLASS);