Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Bryan Wu | df3443d | 2014-06-24 11:45:29 +0900 | [diff] [blame] | 2 | /* |
Alexandre Courbot | 871d78e | 2015-07-09 16:33:00 +0900 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, NVIDIA CORPORATION. All rights reserved. |
Bryan Wu | df3443d | 2014-06-24 11:45:29 +0900 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* Tegra vpr routines */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Bryan Wu | df3443d | 2014-06-24 11:45:29 +0900 | [diff] [blame] | 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/tegra.h> |
| 12 | #include <asm/arch/mc.h> |
Stephen Warren | 3d186cf | 2018-07-31 12:39:07 -0600 | [diff] [blame] | 13 | #include <asm/arch-tegra/ap.h> |
Bryan Wu | df3443d | 2014-06-24 11:45:29 +0900 | [diff] [blame] | 14 | |
Alexandre Courbot | 871d78e | 2015-07-09 16:33:00 +0900 | [diff] [blame] | 15 | #include <fdt_support.h> |
| 16 | |
| 17 | static bool _configured; |
| 18 | |
Alexandre Courbot | eca676b | 2015-10-19 13:57:03 +0900 | [diff] [blame] | 19 | void tegra_gpu_config(void) |
Bryan Wu | df3443d | 2014-06-24 11:45:29 +0900 | [diff] [blame] | 20 | { |
| 21 | struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE; |
| 22 | |
Stephen Warren | 3d186cf | 2018-07-31 12:39:07 -0600 | [diff] [blame] | 23 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 24 | if (!tegra_cpu_is_non_secure()) |
| 25 | #endif |
| 26 | { |
| 27 | /* Turn VPR off */ |
| 28 | writel(0, &mc->mc_video_protect_size_mb); |
| 29 | writel(TEGRA_MC_VIDEO_PROTECT_REG_WRITE_ACCESS_DISABLED, |
| 30 | &mc->mc_video_protect_reg_ctrl); |
| 31 | /* read back to ensure the write went through */ |
| 32 | readl(&mc->mc_video_protect_reg_ctrl); |
| 33 | } |
Alexandre Courbot | 871d78e | 2015-07-09 16:33:00 +0900 | [diff] [blame] | 34 | |
| 35 | debug("configured VPR\n"); |
| 36 | |
| 37 | _configured = true; |
| 38 | } |
| 39 | |
Alexandre Courbot | a38a3c4 | 2015-07-09 16:33:01 +0900 | [diff] [blame] | 40 | #if defined(CONFIG_OF_LIBFDT) |
| 41 | |
Stephen Warren | d9b6f58 | 2016-04-12 11:17:39 -0600 | [diff] [blame] | 42 | int tegra_gpu_enable_node(void *blob, const char *compat) |
Alexandre Courbot | a38a3c4 | 2015-07-09 16:33:01 +0900 | [diff] [blame] | 43 | { |
| 44 | int offset; |
| 45 | |
Stephen Warren | d9b6f58 | 2016-04-12 11:17:39 -0600 | [diff] [blame] | 46 | if (!_configured) |
| 47 | return 0; |
| 48 | |
Marek BehĂșn | 3058e28 | 2022-01-20 01:04:42 +0100 | [diff] [blame] | 49 | fdt_for_each_node_by_compatible(offset, blob, -1, compat) |
Stephen Warren | d9b6f58 | 2016-04-12 11:17:39 -0600 | [diff] [blame] | 50 | fdt_status_okay(blob, offset); |
Alexandre Courbot | a38a3c4 | 2015-07-09 16:33:01 +0900 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | #endif |