summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c b/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
index f81e8503..c6a6eae9 100644
--- a/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
+++ b/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
@@ -439,20 +439,21 @@ static const struct gpu_ops vgpu_gv11b_ops = {
439 }, 439 },
440#ifdef CONFIG_GK20A_CTXSW_TRACE 440#ifdef CONFIG_GK20A_CTXSW_TRACE
441 .fecs_trace = { 441 .fecs_trace = {
442 .alloc_user_buffer = NULL, 442 .alloc_user_buffer = vgpu_alloc_user_buffer,
443 .free_user_buffer = NULL, 443 .free_user_buffer = vgpu_free_user_buffer,
444 .mmap_user_buffer = NULL, 444 .mmap_user_buffer = vgpu_mmap_user_buffer,
445 .init = NULL, 445 .init = vgpu_fecs_trace_init,
446 .deinit = NULL, 446 .deinit = vgpu_fecs_trace_deinit,
447 .enable = NULL, 447 .enable = vgpu_fecs_trace_enable,
448 .disable = NULL, 448 .disable = vgpu_fecs_trace_disable,
449 .is_enabled = NULL, 449 .is_enabled = vgpu_fecs_trace_is_enabled,
450 .reset = NULL, 450 .reset = NULL,
451 .flush = NULL, 451 .flush = NULL,
452 .poll = NULL, 452 .poll = vgpu_fecs_trace_poll,
453 .bind_channel = NULL, 453 .bind_channel = NULL,
454 .unbind_channel = NULL, 454 .unbind_channel = NULL,
455 .max_entries = NULL, 455 .max_entries = vgpu_fecs_trace_max_entries,
456 .set_filter = vgpu_fecs_trace_set_filter,
456 }, 457 },
457#endif /* CONFIG_GK20A_CTXSW_TRACE */ 458#endif /* CONFIG_GK20A_CTXSW_TRACE */
458 .mm = { 459 .mm = {