summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-06-07 15:44:10 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-06-07 23:06:55 -0400
commitfc724baa4becf051b3e6647858a6ded90f1cee86 (patch)
tree8d70e917e1aa5b7bf2bc97e1bc03838e38156916 /drivers/gpu/nvgpu/gm20b/mc_gm20b.c
parent8efe596b01972c4efd39e709d51bd2e88a62d43f (diff)
gpu: nvgpu: Add MC HAL is_intr1_pending
Add MC HAL is_intr1_pending. At the same time introduce nvgpu_unit that is passed as parameter to is_intr1_pending. The API is passed contents of intr1 register and an engine number, and returns true if there's an interrupt pending for the engine. JIRA NVGPU-26 Change-Id: I8e6363dd78572f8e41dbab2b258036ed168b6f75 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1497870 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/mc_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/mc_gm20b.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/mc_gm20b.c b/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
index ebb9780d..7330a027 100644
--- a/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
@@ -32,4 +32,5 @@ void gm20b_init_mc(struct gpu_ops *gops)
32 gops->mc.disable = gk20a_mc_disable; 32 gops->mc.disable = gk20a_mc_disable;
33 gops->mc.reset = gk20a_mc_reset; 33 gops->mc.reset = gk20a_mc_reset;
34 gops->mc.boot_0 = gk20a_mc_boot_0; 34 gops->mc.boot_0 = gk20a_mc_boot_0;
35 gops->mc.is_intr1_pending = mc_gk20a_is_intr1_pending;
35} 36}