gpu: nvgpu: move gr init/reset functions to common.gr.init

Move following functions from gr_gk20a.c to common.gr.init
gk20a_init_gr_support ---> nvgpu_gr_init_support
gk20a_gr_reset ---> nvgpu_gr_reset
gk20a_enable_gr_hw ---> nvgpu_gr_enable_hw

Move all static functions called from those functions to
common.gr.init under gr.c file.

JIRA NVGPU-1885

Change-Id: I695235f97738654e7c686a345d3f84d1daaacd72
Signed-off-by: Vinod G <vinodg@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2082363
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Vinod G
2019-03-26 17:46:58 -07:00
committed by mobile promotions
parent 179e3cf84a
commit dc405b38e1
10 changed files with 504 additions and 495 deletions

View File

@@ -322,7 +322,7 @@ int gk20a_finalize_poweron(struct gk20a *g)
}
}
err = gk20a_enable_gr_hw(g);
err = nvgpu_gr_enable_hw(g);
if (err != 0) {
nvgpu_err(g, "failed to enable gr");
nvgpu_mutex_release(&g->tpc_pg_lock);
@@ -354,7 +354,7 @@ int gk20a_finalize_poweron(struct gk20a *g)
goto done;
}
err = gk20a_init_gr_support(g);
err = nvgpu_gr_init_support(g);
if (err != 0) {
nvgpu_err(g, "failed to init gk20a gr");
nvgpu_mutex_release(&g->tpc_pg_lock);