summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-05-12 20:26:39 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-08-30 13:04:23 -0400
commit0e69c6707b974726459759464bc7876afe894740 (patch)
tree66fd423431695a8f319597078b32eb904ee27b9b /drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
parent39624a04d8c325958c40c0e44acd4fcc9cfeed95 (diff)
gpu: nvgpu: Add gpu_dbg_map_v message type
Add a new debug message type: gpu_dbg_map_v. This is used for mapping messages that are not specifically memory map operations. Also cleanup the memory mapping debugging a bit since there was one duplicate print and the memory map print was difficult to parse visually. As a result the message has been modified to put the most important information first in an easily readable format. Bug 1732449 JIRA DNVGPU-12 Change-Id: Ib19c9371ee958009ab5a2d89b9610e699d070ee2 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1198593 (cherry picked from commit 51dba53b06ca171cdb13d1707f2d026b0ce29f07) Reviewed-on: http://git-master/r/1147670 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/fifo_vgpu.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/fifo_vgpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c b/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
index a797bad4..2bd36b91 100644
--- a/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
@@ -272,7 +272,7 @@ static int vgpu_init_fifo_setup_sw(struct gk20a *g)
272 if (resource_size(g->bar1_mem) == (resource_size_t)f->userd.size) 272 if (resource_size(g->bar1_mem) == (resource_size_t)f->userd.size)
273 f->userd.gpu_va = 0; 273 f->userd.gpu_va = 0;
274 274
275 gk20a_dbg(gpu_dbg_map, "userd bar1 va = 0x%llx", f->userd.gpu_va); 275 gk20a_dbg(gpu_dbg_map_v, "userd bar1 va = 0x%llx", f->userd.gpu_va);
276 276
277 f->channel = vzalloc(f->num_channels * sizeof(*f->channel)); 277 f->channel = vzalloc(f->num_channels * sizeof(*f->channel));
278 f->tsg = vzalloc(f->num_channels * sizeof(*f->tsg)); 278 f->tsg = vzalloc(f->num_channels * sizeof(*f->tsg));