summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
diff options
context:
space:
mode:
authorSeema Khowala <seemaj@nvidia.com>2017-11-09 17:13:25 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-11-22 03:59:28 -0500
commit8fe633449f92d35b60a60de647a4e8fc1b5c8936 (patch)
treef29ee0ed1c9eba66b99033a17d3b2854662b0a15 /drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
parentf34a4d0b125ebf45373e40478925b3eb75b7898a (diff)
gpu: nvgpu: Add check_priv_security fuse ops
-New fuse ops is added to set NVGPU_SEC_PRIVSECURITY and NVGPU_SEC_SECUREGPCCS bits in g->enabled_flags during hal initialization -For igpu non simulation platforms, fuses are read to decide if gpu should be allowed to boot or not. --Do not boot gpu if priv_sec_en is set but wpr_enabled is not set to 1 or vpr_auto_fetch_disable is not set to 0 --With priv_sec_en set, all falcons have to boot in LS mode and this needs wpr_enabled set to 1 AND vpr_auto_fetch_disable set to 0. In this case gmmu tries to pull wpr and vpr settings from tegra mc Bug 2018223 Change-Id: Iceaa1b0b3214e9a3d6cef5d77a82e034302f748b Signed-off-by: Seema Khowala <seemaj@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1595454 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/fuse_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/fuse_gm20b.c90
1 files changed, 90 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c b/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
new file mode 100644
index 00000000..165d5b43
--- /dev/null
+++ b/drivers/gpu/nvgpu/gm20b/fuse_gm20b.c
@@ -0,0 +1,90 @@
1/*
2 * GM20B FUSE
3 *
4 * Copyright (c) 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#include <nvgpu/types.h>
26#include <nvgpu/fuse.h>
27#include <nvgpu/enabled.h>
28
29#include "gk20a/gk20a.h"
30
31#include "fuse_gm20b.h"
32
33#include <nvgpu/hw/gm20b/hw_fuse_gm20b.h>
34
35int gm20b_fuse_check_priv_security(struct gk20a *g)
36{
37 u32 gcplex_config;
38
39 if (nvgpu_is_enabled(g, NVGPU_IS_FMODEL)) {
40 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, true);
41 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
42 nvgpu_log(g, gpu_dbg_info, "priv sec is enabled in fmodel");
43 return 0;
44 }
45
46 if (nvgpu_tegra_fuse_read_gcplex_config_fuse(g, &gcplex_config)) {
47 nvgpu_err(g, "err reading gcplex config fuse, check fuse clk");
48 return -EINVAL;
49 }
50
51 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
52
53 if (gk20a_readl(g, fuse_opt_priv_sec_en_r())) {
54 /*
55 * all falcons have to boot in LS mode and this needs
56 * wpr_enabled set to 1 and vpr_auto_fetch_disable
57 * set to 0. In this case gmmu tries to pull wpr
58 * and vpr settings from tegra mc
59 */
60 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, true);
61 if ((gcplex_config &
62 GCPLEX_CONFIG_WPR_ENABLED_MASK) &&
63 !(gcplex_config &
64 GCPLEX_CONFIG_VPR_AUTO_FETCH_DISABLE_MASK)) {
65 if (gk20a_readl(g, fuse_opt_sec_debug_en_r()))
66 nvgpu_log(g, gpu_dbg_info,
67 "gcplex_config = 0x%08x, "
68 "secure mode: ACR debug",
69 gcplex_config);
70 else
71 nvgpu_log(g, gpu_dbg_info,
72 "gcplex_config = 0x%08x, "
73 "secure mode: ACR non debug",
74 gcplex_config);
75 } else {
76 nvgpu_err(g, "gcplex_config = 0x%08x "
77 "invalid wpr_enabled/vpr_auto_fetch_disable "
78 "with priv_sec_en", gcplex_config);
79 /* do not try to boot GPU */
80 return -EINVAL;
81 }
82 } else {
83 __nvgpu_set_enabled(g, NVGPU_SEC_PRIVSECURITY, false);
84 nvgpu_log(g, gpu_dbg_info,
85 "gcplex_config = 0x%08x, non secure mode",
86 gcplex_config);
87 }
88
89 return 0;
90}