summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gr_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
index 94bfd224..bec33293 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
@@ -7495,6 +7495,17 @@ static int add_ctxsw_buffer_map_entries_subunits(
7495 return 0; 7495 return 0;
7496} 7496}
7497 7497
7498int gr_gk20a_add_ctxsw_reg_pm_fbpa(struct gk20a *g,
7499 struct ctxsw_buf_offset_map_entry *map,
7500 struct aiv_list_gk20a *regs,
7501 u32 *count, u32 *offset,
7502 u32 max_cnt, u32 base,
7503 u32 num_fbpas, u32 stride, u32 mask)
7504{
7505 return add_ctxsw_buffer_map_entries_subunits(map, regs, count, offset,
7506 max_cnt, base, num_fbpas, stride, mask);
7507}
7508
7498static int add_ctxsw_buffer_map_entries_gpcs(struct gk20a *g, 7509static int add_ctxsw_buffer_map_entries_gpcs(struct gk20a *g,
7499 struct ctxsw_buf_offset_map_entry *map, 7510 struct ctxsw_buf_offset_map_entry *map,
7500 u32 *count, u32 *offset, u32 max_cnt) 7511 u32 *count, u32 *offset, u32 max_cnt)
@@ -7683,7 +7694,7 @@ static int gr_gk20a_create_hwpm_ctxsw_buffer_offset_map(struct gk20a *g)
7683 goto cleanup; 7694 goto cleanup;
7684 7695
7685 /* Add entries from _LIST_nv_pm_fbpa_ctx_regs */ 7696 /* Add entries from _LIST_nv_pm_fbpa_ctx_regs */
7686 if (add_ctxsw_buffer_map_entries_subunits(map, 7697 if (g->ops.gr.add_ctxsw_reg_pm_fbpa(g, map,
7687 &g->gr.ctx_vars.ctxsw_regs.pm_fbpa, 7698 &g->gr.ctx_vars.ctxsw_regs.pm_fbpa,
7688 &count, &offset, 7699 &count, &offset,
7689 hwpm_ctxsw_reg_count_max, 0, 7700 hwpm_ctxsw_reg_count_max, 0,