summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.h
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2014-05-20 05:32:54 -0400
committerDan Willemsen <dwillemsen@nvidia.com>2015-03-18 15:09:53 -0400
commit6eab11c6e80635629fd2fba5e8d04baaaa1e1f2d (patch)
tree2b58289650dd6632cdd30d6c5be339581beec1b1 /drivers/gpu/nvgpu/gk20a/gk20a.h
parent77a0b8eb131550b96969550e2582a2e8424eabed (diff)
gpu: nvgpu: gk20a: add busy lock
- add rw_semaphore busy_lock for gpu busy() path - take read lock on busy_lock inside gk20a_busy() so that all usual requests can execute simultaneously - write lock can be taken when we need to block all of the gk20a_busy() calls Bug 1487804 Change-Id: I1b162b38bce9621723d3e45280c6076816cf771a Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/412060 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index ef7945f4..e6630ebf 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -220,6 +220,8 @@ struct gk20a {
220 220
221 bool power_on; 221 bool power_on;
222 222
223 struct rw_semaphore busy_lock;
224
223 struct clk_gk20a clk; 225 struct clk_gk20a clk;
224 struct fifo_gk20a fifo; 226 struct fifo_gk20a fifo;
225 struct gr_gk20a gr; 227 struct gr_gk20a gr;