summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/hal_gp106.c
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2018-06-26 06:44:55 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-07-05 03:38:08 -0400
commit84db72a21ce4076a66acbb936b5a6dabf39c7ee2 (patch)
treef37edc1a310d32270ed3f23efad59da7879a27e8 /drivers/gpu/nvgpu/gp106/hal_gp106.c
parent26fe0fbc92bca183f4e543d45f5fc074d136eba1 (diff)
gpu: nvgpu: add HAL to get offset in gpccs segment
In gr_gk20a_find_priv_offset_in_buffer() we right now calculate offset of a register in gpccs segment based on register address type Separate out sequence to find offset in gpccs segment and move it to new API gr_gk20a_get_offset_in_gpccs_segment() Introduce new HAL gops.gr.get_offset_in_gpccs_segment() and set above API to this HAL Call HAL from gr_gk20a_find_priv_offset_in_buffer() instead of calling direct API Jira NVGPUT-118 Change-Id: I0df798456cf63e3c3a43131f3c4ca7990b89ede0 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1761669 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/hal_gp106.c')
-rw-r--r--drivers/gpu/nvgpu/gp106/hal_gp106.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/hal_gp106.c b/drivers/gpu/nvgpu/gp106/hal_gp106.c
index 8af70cf5..a22350ce 100644
--- a/drivers/gpu/nvgpu/gp106/hal_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/hal_gp106.c
@@ -401,6 +401,8 @@ static const struct gpu_ops gp106_ops = {
401 .alloc_global_ctx_buffers = gr_gk20a_alloc_global_ctx_buffers, 401 .alloc_global_ctx_buffers = gr_gk20a_alloc_global_ctx_buffers,
402 .map_global_ctx_buffers = gr_gk20a_map_global_ctx_buffers, 402 .map_global_ctx_buffers = gr_gk20a_map_global_ctx_buffers,
403 .commit_global_ctx_buffers = gr_gk20a_commit_global_ctx_buffers, 403 .commit_global_ctx_buffers = gr_gk20a_commit_global_ctx_buffers,
404 .get_offset_in_gpccs_segment =
405 gr_gk20a_get_offset_in_gpccs_segment,
404 }, 406 },
405 .fb = { 407 .fb = {
406 .reset = gp106_fb_reset, 408 .reset = gp106_fb_reset,