summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/fuse_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/fuse_gm20b.c91
1 files changed, 0 insertions, 91 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c b/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
deleted file mode 100644
index 95ac8ee3..00000000
--- a/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
+++ /dev/null
@@ -1,91 +0,0 @@
1/*
2 * GM20B FUSE
3 *
4 * Copyright (c) 2017-2018, 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#include <nvgpu/types.h>
26#include <nvgpu/fuse.h>
27#include <nvgpu/enabled.h>
28#include <nvgpu/io.h>
29
30#include "gk20a/gk20a.h"
31
32#include "fuse_gm20b.h"
33
34#include <nvgpu/hw/gm20b/hw_fuse_gm20b.h>
35
36int gm20b_fuse_check_priv_security(struct gk20a *g)
37{
38 u32 gcplex_config;
39
40 if (nvgpu_is_enabled(g, NVGPU_IS_FMODEL)) {
41 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, true);
42 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
43 nvgpu_log(g, gpu_dbg_info, "priv sec is enabled in fmodel");
44 return 0;
45 }
46
47 if (nvgpu_tegra_fuse_read_gcplex_config_fuse(g, &gcplex_config)) {
48 nvgpu_err(g, "err reading gcplex config fuse, check fuse clk");
49 return -EINVAL;
50 }
51
52 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
53
54 if (gk20a_readl(g, fuse_opt_priv_sec_en_r())) {
55 /*
56 * all falcons have to boot in LS mode and this needs
57 * wpr_enabled set to 1 and vpr_auto_fetch_disable
58 * set to 0. In this case gmmu tries to pull wpr
59 * and vpr settings from tegra mc
60 */
61 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, true);
62 if ((gcplex_config &
63 GCPLEX_CONFIG_WPR_ENABLED_MASK) &&
64 !(gcplex_config &
65 GCPLEX_CONFIG_VPR_AUTO_FETCH_DISABLE_MASK)) {
66 if (gk20a_readl(g, fuse_opt_sec_debug_en_r()))
67 nvgpu_log(g, gpu_dbg_info,
68 "gcplex_config = 0x%08x, "
69 "secure mode: ACR debug",
70 gcplex_config);
71 else
72 nvgpu_log(g, gpu_dbg_info,
73 "gcplex_config = 0x%08x, "
74 "secure mode: ACR non debug",
75 gcplex_config);
76 } else {
77 nvgpu_err(g, "gcplex_config = 0x%08x "
78 "invalid wpr_enabled/vpr_auto_fetch_disable "
79 "with priv_sec_en", gcplex_config);
80 /* do not try to boot GPU */
81 return -EINVAL;
82 }
83 } else {
84 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, false);
85 nvgpu_log(g, gpu_dbg_info,
86 "gcplex_config = 0x%08x, non secure mode",
87 gcplex_config);
88 }
89
90 return 0;
91}