summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/mm_gm20b.c
diff options
context:
space:
mode:
authorseshendra Gadagottu <sgadagottu@nvidia.com>2016-07-27 20:06:36 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-10-11 12:16:03 -0400
commitfda4ddfa79f3a78becfe44fd558974bd274c03a9 (patch)
tree55d7999d7af7040ed50121fa6fa70fddc11b0887 /drivers/gpu/nvgpu/gm20b/mm_gm20b.c
parentbb5fd16c67287e53db5165a974ea15ec3be09fe9 (diff)
gpu: nvgpu: userd allocation from sysmem
When bar1 memory is not supported then userd will be allocated from sysmem. Functions gp_get and gp_put are updated accordingly. JIRA GV11B-1 Change-Id: Ia895712a110f6cca26474228141488f5f8ace756 Signed-off-by: seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: http://git-master/r/1225384 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/mm_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/mm_gm20b.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/mm_gm20b.c b/drivers/gpu/nvgpu/gm20b/mm_gm20b.c
index 8aa14662..36d1192a 100644
--- a/drivers/gpu/nvgpu/gm20b/mm_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/mm_gm20b.c
@@ -163,6 +163,11 @@ static int gm20b_mm_bar1_bind(struct gk20a *g, struct mem_desc *bar1_inst)
163 return retry ? -EINVAL : 0; 163 return retry ? -EINVAL : 0;
164} 164}
165 165
166static bool gm20b_mm_is_bar1_supported(struct gk20a *g)
167{
168 return true;
169}
170
166void gm20b_init_mm(struct gpu_ops *gops) 171void gm20b_init_mm(struct gpu_ops *gops)
167{ 172{
168 gops->mm.support_sparse = gm20b_mm_support_sparse; 173 gops->mm.support_sparse = gm20b_mm_support_sparse;
@@ -186,4 +191,5 @@ void gm20b_init_mm(struct gpu_ops *gops)
186 gops->mm.init_pdb = gk20a_mm_init_pdb; 191 gops->mm.init_pdb = gk20a_mm_init_pdb;
187 gops->mm.init_mm_setup_hw = gk20a_init_mm_setup_hw; 192 gops->mm.init_mm_setup_hw = gk20a_init_mm_setup_hw;
188 gops->mm.bar1_bind = gm20b_mm_bar1_bind; 193 gops->mm.bar1_bind = gm20b_mm_bar1_bind;
194 gops->mm.is_bar1_supported = gm20b_mm_is_bar1_supported;
189} 195}