summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/nvgpu/vgpu/fifo_vgpu.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c b/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
index a7e9eed8..e636d5ae 100644
--- a/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/fifo_vgpu.c
@@ -570,6 +570,25 @@ static int vgpu_fifo_set_runlist_interleave(struct gk20a *g,
570 return err ? err : msg.ret; 570 return err ? err : msg.ret;
571} 571}
572 572
573int vgpu_channel_set_timeslice(struct channel_gk20a *ch, u32 timeslice)
574{
575 struct gk20a_platform *platform = gk20a_get_platform(ch->g->dev);
576 struct tegra_vgpu_cmd_msg msg;
577 struct tegra_vgpu_channel_timeslice_params *p =
578 &msg.params.channel_timeslice;
579 int err;
580
581 gk20a_dbg_fn("");
582
583 msg.cmd = TEGRA_VGPU_CMD_CHANNEL_SET_TIMESLICE;
584 msg.handle = platform->virt_handle;
585 p->handle = ch->virt_ctx;
586 p->timeslice_us = timeslice;
587 err = vgpu_comm_sendrecv(&msg, sizeof(msg), sizeof(msg));
588 WARN_ON(err || msg.ret);
589 return err ? err : msg.ret;
590}
591
573static void vgpu_fifo_set_ctx_mmu_error(struct gk20a *g, 592static void vgpu_fifo_set_ctx_mmu_error(struct gk20a *g,
574 struct channel_gk20a *ch) 593 struct channel_gk20a *ch)
575{ 594{
@@ -656,4 +675,5 @@ void vgpu_init_fifo_ops(struct gpu_ops *gops)
656 gops->fifo.wait_engine_idle = vgpu_fifo_wait_engine_idle; 675 gops->fifo.wait_engine_idle = vgpu_fifo_wait_engine_idle;
657 gops->fifo.channel_set_priority = vgpu_channel_set_priority; 676 gops->fifo.channel_set_priority = vgpu_channel_set_priority;
658 gops->fifo.set_runlist_interleave = vgpu_fifo_set_runlist_interleave; 677 gops->fifo.set_runlist_interleave = vgpu_fifo_set_runlist_interleave;
678 gops->fifo.channel_set_timeslice = vgpu_channel_set_timeslice;
659} 679}