blob: 58f49d05f6e8f483241efe0c99f27a86e170c806 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Douglas Raillard21362a92016-12-02 13:51:54 +00002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05305 */
6
7#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <string.h>
9
10#include <arch_helpers.h>
11#include <common/debug.h>
12#include <lib/mmio.h>
13#include <lib/utils.h>
14#include <lib/xlat_tables/xlat_tables_v2.h>
15
Varun Wadekarb316e242015-05-19 16:48:04 +053016#include <memctrl.h>
Varun Wadekar7a9a2852015-09-18 11:21:22 +053017#include <memctrl_v1.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053018#include <tegra_def.h>
Varun Wadekar7a269e22015-06-10 14:04:32 +053019
Varun Wadekar7a269e22015-06-10 14:04:32 +053020/* Video Memory base and size (live values) */
Varun Wadekar64443ca2016-12-12 16:14:57 -080021static uint64_t video_mem_base;
Varun Wadekar7a269e22015-06-10 14:04:32 +053022static uint64_t video_mem_size;
Varun Wadekarb316e242015-05-19 16:48:04 +053023
24/*
25 * Init SMMU.
26 */
27void tegra_memctrl_setup(void)
28{
29 /*
30 * Setup the Memory controller to allow only secure accesses to
31 * the TZDRAM carveout
32 */
Varun Wadekar7a9a2852015-09-18 11:21:22 +053033 INFO("Tegra Memory Controller (v1)\n");
Varun Wadekarb316e242015-05-19 16:48:04 +053034
35 /* allow translations for all MC engines */
36 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_0_0,
37 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
38 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_1_0,
39 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
40 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_2_0,
41 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
42 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_3_0,
43 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
44 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_4_0,
45 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
46
47 tegra_mc_write_32(MC_SMMU_ASID_SECURITY_0, MC_SMMU_ASID_SECURITY);
48
49 tegra_mc_write_32(MC_SMMU_TLB_CONFIG_0, MC_SMMU_TLB_CONFIG_0_RESET_VAL);
50 tegra_mc_write_32(MC_SMMU_PTC_CONFIG_0, MC_SMMU_PTC_CONFIG_0_RESET_VAL);
51
52 /* flush PTC and TLB */
53 tegra_mc_write_32(MC_SMMU_PTC_FLUSH_0, MC_SMMU_PTC_FLUSH_ALL);
54 (void)tegra_mc_read_32(MC_SMMU_CONFIG_0); /* read to flush writes */
55 tegra_mc_write_32(MC_SMMU_TLB_FLUSH_0, MC_SMMU_TLB_FLUSH_ALL);
56
57 /* enable SMMU */
58 tegra_mc_write_32(MC_SMMU_CONFIG_0,
59 MC_SMMU_CONFIG_0_SMMU_ENABLE_ENABLE);
60 (void)tegra_mc_read_32(MC_SMMU_CONFIG_0); /* read to flush writes */
Varun Wadekar7a269e22015-06-10 14:04:32 +053061
62 /* video memory carveout */
Varun Wadekar64443ca2016-12-12 16:14:57 -080063 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI,
64 (uint32_t)(video_mem_base >> 32));
65 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)video_mem_base);
Varun Wadekar7a269e22015-06-10 14:04:32 +053066 tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, video_mem_size);
Varun Wadekarb316e242015-05-19 16:48:04 +053067}
68
69/*
Varun Wadekar6eec6d62016-03-03 13:28:10 -080070 * Restore Memory Controller settings after "System Suspend"
71 */
72void tegra_memctrl_restore_settings(void)
73{
74 tegra_memctrl_setup();
75}
76
77/*
Varun Wadekarb316e242015-05-19 16:48:04 +053078 * Secure the BL31 DRAM aperture.
79 *
80 * phys_base = physical base of TZDRAM aperture
81 * size_in_bytes = size of aperture in bytes
82 */
83void tegra_memctrl_tzdram_setup(uint64_t phys_base, uint32_t size_in_bytes)
84{
85 /*
86 * Setup the Memory controller to allow only secure accesses to
87 * the TZDRAM carveout
88 */
89 INFO("Configuring TrustZone DRAM Memory Carveout\n");
90
91 tegra_mc_write_32(MC_SECURITY_CFG0_0, phys_base);
92 tegra_mc_write_32(MC_SECURITY_CFG1_0, size_in_bytes >> 20);
93}
Varun Wadekar7a269e22015-06-10 14:04:32 +053094
Varun Wadekar0dc91812015-12-30 15:06:41 -080095/*
96 * Secure the BL31 TZRAM aperture.
97 *
98 * phys_base = physical base of TZRAM aperture
99 * size_in_bytes = size of aperture in bytes
100 */
101void tegra_memctrl_tzram_setup(uint64_t phys_base, uint32_t size_in_bytes)
102{
103 /*
104 * The v1 hardware controller does not have any registers
105 * for setting up the on-chip TZRAM.
106 */
107}
108
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100109static void tegra_clear_videomem(uintptr_t non_overlap_area_start,
110 unsigned long long non_overlap_area_size)
111{
112 /*
Varun Wadekarb5132322017-04-10 15:30:17 -0700113 * Map the NS memory first, clean it and then unmap it.
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100114 */
Varun Wadekarb5132322017-04-10 15:30:17 -0700115 mmap_add_dynamic_region(non_overlap_area_start, /* PA */
116 non_overlap_area_start, /* VA */
117 non_overlap_area_size, /* size */
118 MT_NS | MT_RW | MT_EXECUTE_NEVER); /* attrs */
119
Douglas Raillard21362a92016-12-02 13:51:54 +0000120 zeromem((void *)non_overlap_area_start, non_overlap_area_size);
Varun Wadekarb5132322017-04-10 15:30:17 -0700121 flush_dcache_range(non_overlap_area_start, non_overlap_area_size);
122
123 mmap_remove_dynamic_region(non_overlap_area_start,
124 non_overlap_area_size);
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100125}
126
Varun Wadekar7a269e22015-06-10 14:04:32 +0530127/*
128 * Program the Video Memory carveout region
129 *
130 * phys_base = physical base of aperture
131 * size_in_bytes = size of aperture in bytes
132 */
133void tegra_memctrl_videomem_setup(uint64_t phys_base, uint32_t size_in_bytes)
134{
135 uintptr_t vmem_end_old = video_mem_base + (video_mem_size << 20);
136 uintptr_t vmem_end_new = phys_base + size_in_bytes;
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100137 unsigned long long non_overlap_area_size;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530138
139 /*
Varun Wadekar7a269e22015-06-10 14:04:32 +0530140 * Setup the Memory controller to restrict CPU accesses to the Video
141 * Memory region
142 */
143 INFO("Configuring Video Memory Carveout\n");
144
145 /*
146 * Configure Memory Controller directly for the first time.
147 */
148 if (video_mem_base == 0)
149 goto done;
150
151 /*
152 * Clear the old regions now being exposed. The following cases
153 * can occur -
154 *
155 * 1. clear whole old region (no overlap with new region)
156 * 2. clear old sub-region below new base
157 * 3. clear old sub-region above new end
158 */
159 INFO("Cleaning previous Video Memory Carveout\n");
160
Varun Wadekar1be2f972015-08-26 15:06:14 +0530161 if (phys_base > vmem_end_old || video_mem_base > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100162 tegra_clear_videomem(video_mem_base, video_mem_size << 20);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530163 } else {
164 if (video_mem_base < phys_base) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100165 non_overlap_area_size = phys_base - video_mem_base;
166 tegra_clear_videomem(video_mem_base, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530167 }
168 if (vmem_end_old > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100169 non_overlap_area_size = vmem_end_old - vmem_end_new;
170 tegra_clear_videomem(vmem_end_new, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530171 }
172 }
Varun Wadekar7a269e22015-06-10 14:04:32 +0530173
174done:
Varun Wadekar64443ca2016-12-12 16:14:57 -0800175 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI, (uint32_t)(phys_base >> 32));
176 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)phys_base);
Varun Wadekar7a269e22015-06-10 14:04:32 +0530177 tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, size_in_bytes >> 20);
178
179 /* store new values */
180 video_mem_base = phys_base;
181 video_mem_size = size_in_bytes >> 20;
182}
Varun Wadekarc92050b2017-03-29 14:57:29 -0700183
184/*
185 * During boot, USB3 and flash media (SDMMC/SATA) devices need access to
186 * IRAM. Because these clients connect to the MC and do not have a direct
187 * path to the IRAM, the MC implements AHB redirection during boot to allow
188 * path to IRAM. In this mode, accesses to a programmed memory address aperture
189 * are directed to the AHB bus, allowing access to the IRAM. The AHB aperture
190 * is defined by the IRAM_BASE_LO and IRAM_BASE_HI registers, which are
191 * initialized to disable this aperture.
192 *
193 * Once bootup is complete, we must program IRAM base to 0xffffffff and
194 * IRAM top to 0x00000000, thus disabling access to IRAM. DRAM is then
195 * potentially accessible in this address range. These aperture registers
196 * also have an access_control/lock bit. After disabling the aperture, the
197 * access_control register should be programmed to lock the registers.
198 */
199void tegra_memctrl_disable_ahb_redirection(void)
200{
201 /* program the aperture registers */
202 tegra_mc_write_32(MC_IRAM_BASE_LO, 0xFFFFFFFF);
203 tegra_mc_write_32(MC_IRAM_TOP_LO, 0);
204 tegra_mc_write_32(MC_IRAM_BASE_TOP_HI, 0);
205
206 /* lock the aperture registers */
207 tegra_mc_write_32(MC_IRAM_REG_CTRL, MC_DISABLE_IRAM_CFG_WRITES);
208}