blob: 92fa273b54c66f1eed2d6accb2d7ddacef3afa86 [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{
Varun Wadekar117a2e02017-08-03 11:40:34 -0700112 int ret;
113
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100114 /*
Varun Wadekarb5132322017-04-10 15:30:17 -0700115 * Map the NS memory first, clean it and then unmap it.
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100116 */
Varun Wadekar117a2e02017-08-03 11:40:34 -0700117 ret = mmap_add_dynamic_region(non_overlap_area_start, /* PA */
Varun Wadekarb5132322017-04-10 15:30:17 -0700118 non_overlap_area_start, /* VA */
119 non_overlap_area_size, /* size */
120 MT_NS | MT_RW | MT_EXECUTE_NEVER); /* attrs */
Varun Wadekar117a2e02017-08-03 11:40:34 -0700121 assert(ret == 0);
Varun Wadekarb5132322017-04-10 15:30:17 -0700122
Douglas Raillard21362a92016-12-02 13:51:54 +0000123 zeromem((void *)non_overlap_area_start, non_overlap_area_size);
Varun Wadekarb5132322017-04-10 15:30:17 -0700124 flush_dcache_range(non_overlap_area_start, non_overlap_area_size);
125
126 mmap_remove_dynamic_region(non_overlap_area_start,
127 non_overlap_area_size);
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100128}
129
Varun Wadekar7a269e22015-06-10 14:04:32 +0530130/*
131 * Program the Video Memory carveout region
132 *
133 * phys_base = physical base of aperture
134 * size_in_bytes = size of aperture in bytes
135 */
136void tegra_memctrl_videomem_setup(uint64_t phys_base, uint32_t size_in_bytes)
137{
138 uintptr_t vmem_end_old = video_mem_base + (video_mem_size << 20);
139 uintptr_t vmem_end_new = phys_base + size_in_bytes;
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100140 unsigned long long non_overlap_area_size;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530141
142 /*
Varun Wadekar7a269e22015-06-10 14:04:32 +0530143 * Setup the Memory controller to restrict CPU accesses to the Video
144 * Memory region
145 */
146 INFO("Configuring Video Memory Carveout\n");
147
148 /*
149 * Configure Memory Controller directly for the first time.
150 */
151 if (video_mem_base == 0)
152 goto done;
153
154 /*
155 * Clear the old regions now being exposed. The following cases
156 * can occur -
157 *
158 * 1. clear whole old region (no overlap with new region)
159 * 2. clear old sub-region below new base
160 * 3. clear old sub-region above new end
161 */
162 INFO("Cleaning previous Video Memory Carveout\n");
163
Varun Wadekar1be2f972015-08-26 15:06:14 +0530164 if (phys_base > vmem_end_old || video_mem_base > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100165 tegra_clear_videomem(video_mem_base, video_mem_size << 20);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530166 } else {
167 if (video_mem_base < phys_base) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100168 non_overlap_area_size = phys_base - video_mem_base;
169 tegra_clear_videomem(video_mem_base, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530170 }
171 if (vmem_end_old > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100172 non_overlap_area_size = vmem_end_old - vmem_end_new;
173 tegra_clear_videomem(vmem_end_new, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530174 }
175 }
Varun Wadekar7a269e22015-06-10 14:04:32 +0530176
177done:
Varun Wadekar64443ca2016-12-12 16:14:57 -0800178 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI, (uint32_t)(phys_base >> 32));
179 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)phys_base);
Varun Wadekar7a269e22015-06-10 14:04:32 +0530180 tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, size_in_bytes >> 20);
181
182 /* store new values */
183 video_mem_base = phys_base;
184 video_mem_size = size_in_bytes >> 20;
185}
Varun Wadekarc92050b2017-03-29 14:57:29 -0700186
187/*
188 * During boot, USB3 and flash media (SDMMC/SATA) devices need access to
189 * IRAM. Because these clients connect to the MC and do not have a direct
190 * path to the IRAM, the MC implements AHB redirection during boot to allow
191 * path to IRAM. In this mode, accesses to a programmed memory address aperture
192 * are directed to the AHB bus, allowing access to the IRAM. The AHB aperture
193 * is defined by the IRAM_BASE_LO and IRAM_BASE_HI registers, which are
194 * initialized to disable this aperture.
195 *
196 * Once bootup is complete, we must program IRAM base to 0xffffffff and
197 * IRAM top to 0x00000000, thus disabling access to IRAM. DRAM is then
198 * potentially accessible in this address range. These aperture registers
199 * also have an access_control/lock bit. After disabling the aperture, the
200 * access_control register should be programmed to lock the registers.
201 */
202void tegra_memctrl_disable_ahb_redirection(void)
203{
204 /* program the aperture registers */
205 tegra_mc_write_32(MC_IRAM_BASE_LO, 0xFFFFFFFF);
206 tegra_mc_write_32(MC_IRAM_TOP_LO, 0);
207 tegra_mc_write_32(MC_IRAM_BASE_TOP_HI, 0);
208
209 /* lock the aperture registers */
210 tegra_mc_write_32(MC_IRAM_REG_CTRL, MC_DISABLE_IRAM_CFG_WRITES);
211}
Harvey Hsieh359be952017-08-21 15:01:53 +0800212
213void tegra_memctrl_clear_pending_interrupts(void)
214{
215 uint32_t mcerr;
216
217 /* check if there are any pending interrupts */
218 mcerr = mmio_read_32(TEGRA_MC_BASE + MC_INTSTATUS);
219
220 if (mcerr != (uint32_t)0U) { /* should not see error here */
221 WARN("MC_INTSTATUS = 0x%x (should be zero)\n", mcerr);
222 mmio_write_32((TEGRA_MC_BASE + MC_INTSTATUS), mcerr);
223 }
224}