summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-06-22 15:55:17 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-06-30 21:34:59 -0400
commit001c7c3185d9b087f89f48a41bee27d2d06721f6 (patch)
treec869be82279688a5dbe5d1145da09ca2323aef92 /drivers/gpu/nvgpu/gk20a/gk20a.c
parent82c0c96290602b1baf296133c7f55ae1848e433a (diff)
gpu: nvgpu: Per chip default big page size
Make default big page size query a HAL op instead of per-platform constant. This allows querying for default big page size without accessing Linux specific gk20a_platform structure. JIRA NVGPU-38 Change-Id: Ibfbd1319764fdae5fdb06700fb64d23f6f3dd01a Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master/r/1507928 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.c b/drivers/gpu/nvgpu/gk20a/gk20a.c
index 7506c1dd..a87d34f9 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.c
@@ -420,7 +420,7 @@ int gk20a_init_gpu_characteristics(struct gk20a *g)
420 gpu->bus_type = NVGPU_GPU_BUS_TYPE_AXI; /* always AXI for now */ 420 gpu->bus_type = NVGPU_GPU_BUS_TYPE_AXI; /* always AXI for now */
421 421
422 gpu->compression_page_size = g->ops.fb.compression_page_size(g); 422 gpu->compression_page_size = g->ops.fb.compression_page_size(g);
423 gpu->big_page_size = platform->default_big_page_size; 423 gpu->big_page_size = g->ops.mm.get_default_big_page_size();
424 gpu->pde_coverage_bit_count = 424 gpu->pde_coverage_bit_count =
425 g->ops.mm.get_mmu_levels(g, gpu->big_page_size)[0].lo_bit[0]; 425 g->ops.mm.get_mmu_levels(g, gpu->big_page_size)[0].lo_bit[0];
426 426