summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl_channel.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_channel.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
index 78352d6b..ed00ad31 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
@@ -37,6 +37,28 @@
37#include "ioctl_channel.h" 37#include "ioctl_channel.h"
38#include "os_linux.h" 38#include "os_linux.h"
39 39
40static const char *gr_gk20a_graphics_preempt_mode_name(u32 graphics_preempt_mode)
41{
42 switch (graphics_preempt_mode) {
43 case NVGPU_GRAPHICS_PREEMPTION_MODE_WFI:
44 return "WFI";
45 default:
46 return "?";
47 }
48}
49
50static const char *gr_gk20a_compute_preempt_mode_name(u32 compute_preempt_mode)
51{
52 switch (compute_preempt_mode) {
53 case NVGPU_COMPUTE_PREEMPTION_MODE_WFI:
54 return "WFI";
55 case NVGPU_COMPUTE_PREEMPTION_MODE_CTA:
56 return "CTA";
57 default:
58 return "?";
59 }
60}
61
40static void gk20a_channel_trace_sched_param( 62static void gk20a_channel_trace_sched_param(
41 void (*trace)(int chid, int tsgid, pid_t pid, u32 timeslice, 63 void (*trace)(int chid, int tsgid, pid_t pid, u32 timeslice,
42 u32 timeout, const char *interleave, 64 u32 timeout, const char *interleave,