summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h
diff options
context:
space:
mode:
authorRichard Zhao <rizhao@nvidia.com>2018-01-30 02:24:37 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2018-02-27 17:30:52 -0500
commit6393eddfa996fba03464f897b85aa5ec79860fed (patch)
tree557ebe9be93e2b0464118e7d8ec019d9d5dbae5f /drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h
parent7932568b7fe9e16b2b83bc58b2b3686c0d5e52d4 (diff)
gpu: nvgpu: vgpu: move common files out of linux folder
Most of files have been moved out of linux folder. More code could be common as halifying going on. Jira EVLR-2364 Change-Id: Ia9dbdbc82f45ceefe5c788eac7517000cd455d5e Signed-off-by: Richard Zhao <rizhao@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1649947 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h')
-rw-r--r--drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h b/drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h
deleted file mode 100644
index 92789ddd..00000000
--- a/drivers/gpu/nvgpu/common/linux/vgpu/fifo_vgpu.h
+++ /dev/null
@@ -1,59 +0,0 @@
1/*
2 * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef _FIFO_VGPU_H_
18#define _FIFO_VGPU_H_
19
20#include <nvgpu/types.h>
21
22struct gk20a;
23struct channel_gk20a;
24struct fifo_gk20a;
25struct tsg_gk20a;
26
27int vgpu_init_fifo_setup_hw(struct gk20a *g);
28void vgpu_channel_bind(struct channel_gk20a *ch);
29void vgpu_channel_unbind(struct channel_gk20a *ch);
30int vgpu_channel_alloc_inst(struct gk20a *g, struct channel_gk20a *ch);
31void vgpu_channel_free_inst(struct gk20a *g, struct channel_gk20a *ch);
32void vgpu_channel_enable(struct channel_gk20a *ch);
33void vgpu_channel_disable(struct channel_gk20a *ch);
34int vgpu_channel_setup_ramfc(struct channel_gk20a *ch, u64 gpfifo_base,
35 u32 gpfifo_entries,
36 unsigned long acquire_timeout, u32 flags);
37int vgpu_fifo_init_engine_info(struct fifo_gk20a *f);
38int vgpu_fifo_preempt_channel(struct gk20a *g, u32 chid);
39int vgpu_fifo_preempt_tsg(struct gk20a *g, u32 tsgid);
40int vgpu_fifo_update_runlist(struct gk20a *g, u32 runlist_id,
41 u32 chid, bool add, bool wait_for_finish);
42int vgpu_fifo_wait_engine_idle(struct gk20a *g);
43int vgpu_fifo_set_runlist_interleave(struct gk20a *g,
44 u32 id,
45 u32 runlist_id,
46 u32 new_level);
47int vgpu_channel_set_timeslice(struct channel_gk20a *ch, u32 timeslice);
48int vgpu_fifo_force_reset_ch(struct channel_gk20a *ch,
49 u32 err_code, bool verbose);
50u32 vgpu_fifo_default_timeslice_us(struct gk20a *g);
51int vgpu_tsg_open(struct tsg_gk20a *tsg);
52void vgpu_tsg_release(struct tsg_gk20a *tsg);
53int vgpu_tsg_bind_channel(struct tsg_gk20a *tsg,
54 struct channel_gk20a *ch);
55int vgpu_tsg_unbind_channel(struct channel_gk20a *ch);
56int vgpu_tsg_set_timeslice(struct tsg_gk20a *tsg, u32 timeslice);
57int vgpu_enable_tsg(struct tsg_gk20a *tsg);
58
59#endif