summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
diff options
context:
space:
mode:
authorLakshmanan M <lm@nvidia.com>2016-06-02 00:09:52 -0400
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:56:17 -0500
commit9454529abe0ac42d15df01e36898cd2c840de9c8 (patch)
tree6d965a08f74b72aa948edcb224a4f753d86f3b90 /drivers/gpu/nvgpu/gp10b/ce_gp10b.c
parentc8569f1ebfcdd4546d3674458684c7e1315872a4 (diff)
gpu: nvgpu: Add multiple engine and runlist support
This CL covers the following modification, 1) Added multiple engine_info support 2) Added multiple runlist_info support 3) Initial changes for ASYNC CE support 4) Added ASYNC CE interrupt support for Pascal GPU series 5) Removed hard coded engine_id logic and made generic way 6) Code cleanup for readability JIRA DNVGPU-26 Change-Id: Ibf46a89a5308c82f01040ffa979c5014b3206f8e Signed-off-by: Lakshmanan M <lm@nvidia.com> Reviewed-on: http://git-master/r/1156022 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/ce_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/ce_gp10b.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/ce_gp10b.c b/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
new file mode 100644
index 00000000..a35c9817
--- /dev/null
+++ b/drivers/gpu/nvgpu/gp10b/ce_gp10b.c
@@ -0,0 +1,82 @@
1/*
2 * Pascal GPU series Copy Engine.
3 *
4 * Copyright (c) 2011-2016, NVIDIA CORPORATION. All rights reserved.
5 *
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,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program.
17 */
18
19#include "gk20a/gk20a.h" /* FERMI and MAXWELL classes defined here */
20#include "hw_ce_gp10b.h"
21#include "ce_gp10b.h"
22
23static u32 ce_nonblockpipe_isr(struct gk20a *g, u32 fifo_intr)
24{
25 gk20a_dbg(gpu_dbg_intr, "ce non-blocking pipe interrupt\n");
26
27 /* wake theads waiting in this channel */
28 gk20a_channel_semaphore_wakeup(g, true);
29 return ce_intr_status_nonblockpipe_pending_f();
30}
31
32static u32 ce_blockpipe_isr(struct gk20a *g, u32 fifo_intr)
33{
34 gk20a_dbg(gpu_dbg_intr, "ce blocking pipe interrupt\n");
35
36 return ce_intr_status_blockpipe_pending_f();
37}
38
39static u32 ce_launcherr_isr(struct gk20a *g, u32 fifo_intr)
40{
41 gk20a_dbg(gpu_dbg_intr, "ce launch error interrupt\n");
42
43 return ce_intr_status_launcherr_pending_f();
44}
45
46static void gp10b_ce_isr(struct gk20a *g, u32 inst_id, u32 pri_base)
47{
48 u32 ce_intr = gk20a_readl(g, ce_intr_status_r(inst_id));
49 u32 clear_intr = 0;
50
51 gk20a_dbg(gpu_dbg_intr, "ce isr %08x %08x\n", ce_intr, inst_id);
52
53 /* clear blocking interrupts: they exibit broken behavior */
54 if (ce_intr & ce_intr_status_blockpipe_pending_f())
55 clear_intr |= ce_blockpipe_isr(g, ce_intr);
56
57 if (ce_intr & ce_intr_status_launcherr_pending_f())
58 clear_intr |= ce_launcherr_isr(g, ce_intr);
59
60 gk20a_writel(g, ce_intr_status_r(inst_id), clear_intr);
61 return;
62}
63
64static void gp10b_ce_nonstall_isr(struct gk20a *g, u32 inst_id, u32 pri_base)
65{
66 u32 ce_intr = gk20a_readl(g, ce_intr_status_r(inst_id));
67 u32 clear_intr = 0;
68
69 gk20a_dbg(gpu_dbg_intr, "ce nonstall isr %08x %08x\n", ce_intr, inst_id);
70
71 if (ce_intr & ce_intr_status_nonblockpipe_pending_f())
72 clear_intr |= ce_nonblockpipe_isr(g, ce_intr);
73
74 gk20a_writel(g, ce_intr_status_r(inst_id), clear_intr);
75
76 return;
77}
78void gp10b_init_ce(struct gpu_ops *gops)
79{
80 gops->ce2.isr_stall = gp10b_ce_isr;
81 gops->ce2.isr_nonstall = gp10b_ce_nonstall_isr;
82}