summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c
diff options
context:
space:
mode:
authorseshendra Gadagottu <sgadagottu@nvidia.com>2017-10-16 15:14:29 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-10-18 14:26:10 -0400
commit201ccbfa8503daee9562a22f50a5b626fe4cc6a1 (patch)
treea9ae8607667c4b64321668df72d5cbc8bcca66ab /drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c
parent3fc7c5f75ef4a6399e060d8cbfd4d7dc40c82588 (diff)
gpu: nvgpu: gv11b: update dbg ops
Updated following hal functions for gv11b and reused them for gv100: perfbuffer_enable perfbuffer_disable These changes are needed because of following reasons: 1. Register offsets for perf_pmasys_* are changed for gv11b/gv100 from gk20a. 2. Updated memory type for perf_pmasys_mem_block_target to sys_ncoh_f(). Bug 200327596 Change-Id: Ia672ac561917c8ed36caea9cc7e74b7fc7ce8188 Signed-off-by: seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1571074 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c98
1 files changed, 98 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c b/drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c
new file mode 100644
index 00000000..ad50025f
--- /dev/null
+++ b/drivers/gpu/nvgpu/gv11b/dbg_gpu_gv11b.c
@@ -0,0 +1,98 @@
1/*
2 * Tegra GV11B GPU Debugger/Profiler Driver
3 *
4 * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#include <uapi/linux/nvgpu.h>
26
27#include <nvgpu/log.h>
28#include "gk20a/gk20a.h"
29#include <nvgpu/hw/gv11b/hw_perf_gv11b.h>
30
31int gv11b_perfbuf_enable_locked(struct gk20a *g, u64 offset, u32 size)
32{
33 struct mm_gk20a *mm = &g->mm;
34 u32 virt_addr_lo;
35 u32 virt_addr_hi;
36 u32 inst_pa_page;
37 int err;
38
39 gk20a_dbg(gpu_dbg_fn | gpu_dbg_gpu_dbg, "");
40 err = gk20a_busy(g);
41 if (err) {
42 nvgpu_err(g, "failed to poweron");
43 return err;
44 }
45
46 err = gk20a_alloc_inst_block(g, &mm->perfbuf.inst_block);
47 if (err)
48 return err;
49
50 g->ops.mm.init_inst_block(&mm->perfbuf.inst_block, mm->perfbuf.vm, 0);
51
52 virt_addr_lo = u64_lo32(offset);
53 virt_addr_hi = u64_hi32(offset);
54
55 gk20a_writel(g, perf_pmasys_outbase_r(), virt_addr_lo);
56 gk20a_writel(g, perf_pmasys_outbaseupper_r(),
57 perf_pmasys_outbaseupper_ptr_f(virt_addr_hi));
58 gk20a_writel(g, perf_pmasys_outsize_r(), size);
59
60 /* this field is aligned to 4K */
61 inst_pa_page = gk20a_mm_inst_block_addr(g,
62 &mm->perfbuf.inst_block) >> 12;
63
64 gk20a_writel(g, perf_pmasys_mem_block_r(),
65 perf_pmasys_mem_block_base_f(inst_pa_page) |
66 perf_pmasys_mem_block_valid_true_f() |
67 perf_pmasys_mem_block_target_sys_ncoh_f());
68
69 gk20a_idle(g);
70 return 0;
71}
72
73/* must be called with dbg_sessions_lock held */
74int gv11b_perfbuf_disable_locked(struct gk20a *g)
75{
76 int err;
77
78 gk20a_dbg(gpu_dbg_fn | gpu_dbg_gpu_dbg, "");
79 err = gk20a_busy(g);
80 if (err) {
81 nvgpu_err(g, "failed to poweron");
82 return err;
83 }
84
85 gk20a_writel(g, perf_pmasys_outbase_r(), 0);
86 gk20a_writel(g, perf_pmasys_outbaseupper_r(),
87 perf_pmasys_outbaseupper_ptr_f(0));
88 gk20a_writel(g, perf_pmasys_outsize_r(), 0);
89
90 gk20a_writel(g, perf_pmasys_mem_block_r(),
91 perf_pmasys_mem_block_base_f(0) |
92 perf_pmasys_mem_block_valid_false_f() |
93 perf_pmasys_mem_block_target_f(0));
94
95 gk20a_idle(g);
96
97 return 0;
98}