summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2016-03-11 10:55:30 -0500
committerTerje Bergstrom <tbergstrom@nvidia.com>2016-03-22 13:02:29 -0400
commita13a4124c7de56d7c38cce106e16f88c429292f8 (patch)
treef33dffbcf207227126da85ec86c9e4a82167a13a /drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
parenta9b9597a108f8dacb01696c5e0f1c7a2e9f52def (diff)
gpu: nvgpu: Disable illegal comptag interrupt
Illegal comptag interrupt is triggered when a page is mapped with two different kinds with incompatible compression status. This can be intentional, so disable the interrupt. Change-Id: I84a212beac147991d09d2d381a9e770b1364f4d8 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1029663 (cherry picked from commit 819607a768f9fccdd0b233d58bcf88b9eee4ee19) Reviewed-on: http://git-master/r/1031010 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/ltc_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/ltc_gm20b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
index 5b6bff7f..ffc36903 100644
--- a/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/ltc_gm20b.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * GM20B L2 2 * GM20B L2
3 * 3 *
4 * Copyright (c) 2014-2015 NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2014-2016 NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify it 6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License, 7 * under the terms and conditions of the GNU General Public License,
@@ -190,6 +190,7 @@ void gm20b_ltc_init_fs_state(struct gk20a *g)
190 reg = gk20a_readl(g, ltc_ltcs_ltss_intr_r()); 190 reg = gk20a_readl(g, ltc_ltcs_ltss_intr_r());
191 reg &= ~ltc_ltcs_ltss_intr_en_evicted_cb_m(); 191 reg &= ~ltc_ltcs_ltss_intr_en_evicted_cb_m();
192 reg &= ~ltc_ltcs_ltss_intr_en_illegal_compstat_access_m(); 192 reg &= ~ltc_ltcs_ltss_intr_en_illegal_compstat_access_m();
193 reg &= ~ltc_ltcs_ltss_intr_en_illegal_compstat_m();
193 gk20a_writel(g, ltc_ltcs_ltss_intr_r(), reg); 194 gk20a_writel(g, ltc_ltcs_ltss_intr_r(), reg);
194} 195}
195 196