summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/cde_gm20b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/cde_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/cde_gm20b.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/cde_gm20b.c b/drivers/gpu/nvgpu/gm20b/cde_gm20b.c
new file mode 100644
index 00000000..d23ba8c5
--- /dev/null
+++ b/drivers/gpu/nvgpu/gm20b/cde_gm20b.c
@@ -0,0 +1,53 @@
1/*
2 * GM20B CDE
3 *
4 * Copyright (c) 2015, 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
16#include "gk20a/gk20a.h"
17#include "cde_gm20b.h"
18
19enum programs {
20 PROG_HPASS = 0,
21 PROG_VPASS_LARGE = 1,
22 PROG_VPASS_SMALL = 2,
23 PROG_HPASS_DEBUG = 3,
24 PROG_VPASS_LARGE_DEBUG = 4,
25 PROG_VPASS_SMALL_DEBUG = 5,
26 PROG_PASSTHROUGH = 6,
27};
28
29static void gm20b_cde_get_program_numbers(struct gk20a *g,
30 u32 block_height_log2,
31 int *hprog_out, int *vprog_out)
32{
33 int hprog = PROG_HPASS;
34 int vprog = (block_height_log2 >= 2) ?
35 PROG_VPASS_LARGE : PROG_VPASS_SMALL;
36 if (g->cde_app.shader_parameter == 1) {
37 hprog = PROG_PASSTHROUGH;
38 vprog = PROG_PASSTHROUGH;
39 } else if (g->cde_app.shader_parameter == 2) {
40 hprog = PROG_HPASS_DEBUG;
41 vprog = (block_height_log2 >= 2) ?
42 PROG_VPASS_LARGE_DEBUG :
43 PROG_VPASS_SMALL_DEBUG;
44 }
45
46 *hprog_out = hprog;
47 *vprog_out = vprog;
48}
49
50void gm20b_init_cde_ops(struct gpu_ops *gops)
51{
52 gops->cde.get_program_numbers = gm20b_cde_get_program_numbers;
53}