summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h')
-rw-r--r--drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h b/drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h
new file mode 100644
index 00000000..cc92c70a
--- /dev/null
+++ b/drivers/gpu/nvgpu/common/ltc/ltc_gm20b.h
@@ -0,0 +1,66 @@
1/*
2 * GM20B L2
3 *
4 * Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef NVGPU_LTC_GM20B
26#define NVGPU_LTC_GM20B
27
28#include <nvgpu/types.h>
29
30struct gk20a;
31struct gr_gk20a;
32struct gpu_ops;
33struct zbc_entry;
34enum gk20a_cbc_op;
35
36int gm20b_ltc_init_comptags(struct gk20a *g, struct gr_gk20a *gr);
37int gm20b_determine_L2_size_bytes(struct gk20a *g);
38void gm20b_ltc_set_zbc_color_entry(struct gk20a *g,
39 struct zbc_entry *color_val,
40 u32 index);
41void gm20b_ltc_set_zbc_depth_entry(struct gk20a *g,
42 struct zbc_entry *depth_val,
43 u32 index);
44void gm20b_ltc_init_cbc(struct gk20a *g, struct gr_gk20a *gr);
45void gm20b_ltc_set_enabled(struct gk20a *g, bool enabled);
46void gm20b_ltc_init_fs_state(struct gk20a *g);
47int gm20b_ltc_cbc_ctrl(struct gk20a *g, enum gk20a_cbc_op op,
48 u32 min, u32 max);
49void gm20b_ltc_isr(struct gk20a *g);
50u32 gm20b_ltc_cbc_fix_config(struct gk20a *g, int base);
51void gm20b_flush_ltc(struct gk20a *g);
52int gm20b_ltc_alloc_phys_cbc(struct gk20a *g,
53 size_t compbit_backing_size);
54int gm20b_ltc_alloc_virt_cbc(struct gk20a *g,
55 size_t compbit_backing_size);
56bool gm20b_ltc_pri_is_ltc_addr(struct gk20a *g, u32 addr);
57bool gm20b_ltc_is_ltcs_ltss_addr(struct gk20a *g, u32 addr);
58bool gm20b_ltc_is_ltcn_ltss_addr(struct gk20a *g, u32 addr);
59void gm20b_ltc_split_lts_broadcast_addr(struct gk20a *g, u32 addr,
60 u32 *priv_addr_table,
61 u32 *priv_addr_table_index);
62void gm20b_ltc_split_ltc_broadcast_addr(struct gk20a *g, u32 addr,
63 u32 *priv_addr_table,
64 u32 *priv_addr_table_index);
65
66#endif