summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseshendra Gadagottu <sgadagottu@nvidia.com>2017-01-13 16:32:09 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-16 15:15:30 -0500
commit4ad2d3aebc4137d350efaff8072d60441572bcf2 (patch)
treec5067df38420861131a25ef35ba124f56993e544
parent209f4eadde89f8678221ab187763ac03b23543e7 (diff)
gpu: nvgpu: gv11b: support for multiple runlists
Add support for multiple runlists in gv11b. Bug 1834201 Change-Id: I5a4cb92643626675314b4b61df330cde06e22c9f Signed-off-by: seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: http://git-master/r/1285044 Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
-rw-r--r--drivers/gpu/nvgpu/gv11b/fifo_gv11b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
index b9276e09..4929f4d1 100644
--- a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * GV11B fifo 2 * GV11B fifo
3 * 3 *
4 * Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify it 6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License, 7 * under the terms and conditions of the GNU General Public License,
@@ -230,4 +230,5 @@ void gv11b_init_fifo(struct gpu_ops *gops)
230 gops->fifo.userd_gp_put = gv11b_userd_gp_put; 230 gops->fifo.userd_gp_put = gv11b_userd_gp_put;
231 gops->fifo.setup_ramfc = channel_gv11b_setup_ramfc; 231 gops->fifo.setup_ramfc = channel_gv11b_setup_ramfc;
232 gops->fifo.unbind_channel = channel_gv11b_unbind; 232 gops->fifo.unbind_channel = channel_gv11b_unbind;
233 gops->fifo.eng_runlist_base_size = fifo_eng_runlist_base__size_1_v;
233} 234}