1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2014-2015, NVIDIA CORPORATION. All rights reserved.
6 /* Tegra vpr routines */
10 #include <asm/arch/tegra.h>
11 #include <asm/arch/mc.h>
13 #include <fdt_support.h>
15 static bool _configured;
17 void tegra_gpu_config(void)
19 struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
22 writel(0, &mc->mc_video_protect_size_mb);
23 writel(TEGRA_MC_VIDEO_PROTECT_REG_WRITE_ACCESS_DISABLED,
24 &mc->mc_video_protect_reg_ctrl);
25 /* read back to ensure the write went through */
26 readl(&mc->mc_video_protect_reg_ctrl);
28 debug("configured VPR\n");
33 #if defined(CONFIG_OF_LIBFDT)
35 int tegra_gpu_enable_node(void *blob, const char *compat)
42 offset = fdt_node_offset_by_compatible(blob, -1, compat);
43 while (offset != -FDT_ERR_NOTFOUND) {
44 fdt_status_okay(blob, offset);
45 offset = fdt_node_offset_by_compatible(blob, offset, compat);