blob: 9944e729dd58814373aab3474be60a10e6a8d527 [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
Varun Wadekar7a269e22015-06-10 14:04:32 +05307#include <arch_helpers.h>
Varun Wadekarb316e242015-05-19 16:48:04 +05308#include <assert.h>
9#include <debug.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053010#include <memctrl.h>
Varun Wadekar7a9a2852015-09-18 11:21:22 +053011#include <memctrl_v1.h>
12#include <mmio.h>
Varun Wadekar7a269e22015-06-10 14:04:32 +053013#include <string.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053014#include <tegra_def.h>
Douglas Raillarda8954fc2017-01-26 15:54:44 +000015#include <utils.h>
Varun Wadekarb5132322017-04-10 15:30:17 -070016#include <xlat_tables_v2.h>
Varun Wadekar7a269e22015-06-10 14:04:32 +053017
Varun Wadekar7a269e22015-06-10 14:04:32 +053018/* Video Memory base and size (live values) */
Varun Wadekar64443ca2016-12-12 16:14:57 -080019static uint64_t video_mem_base;
Varun Wadekar7a269e22015-06-10 14:04:32 +053020static uint64_t video_mem_size;
Varun Wadekarb316e242015-05-19 16:48:04 +053021
22/*
23 * Init SMMU.
24 */
25void tegra_memctrl_setup(void)
26{
27 /*
28 * Setup the Memory controller to allow only secure accesses to
29 * the TZDRAM carveout
30 */
Varun Wadekar7a9a2852015-09-18 11:21:22 +053031 INFO("Tegra Memory Controller (v1)\n");
Varun Wadekarb316e242015-05-19 16:48:04 +053032
33 /* allow translations for all MC engines */
34 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_0_0,
35 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
36 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_1_0,
37 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
38 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_2_0,
39 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
40 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_3_0,
41 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
42 tegra_mc_write_32(MC_SMMU_TRANSLATION_ENABLE_4_0,
43 (unsigned int)MC_SMMU_TRANSLATION_ENABLE);
44
45 tegra_mc_write_32(MC_SMMU_ASID_SECURITY_0, MC_SMMU_ASID_SECURITY);
46
47 tegra_mc_write_32(MC_SMMU_TLB_CONFIG_0, MC_SMMU_TLB_CONFIG_0_RESET_VAL);
48 tegra_mc_write_32(MC_SMMU_PTC_CONFIG_0, MC_SMMU_PTC_CONFIG_0_RESET_VAL);
49
50 /* flush PTC and TLB */
51 tegra_mc_write_32(MC_SMMU_PTC_FLUSH_0, MC_SMMU_PTC_FLUSH_ALL);
52 (void)tegra_mc_read_32(MC_SMMU_CONFIG_0); /* read to flush writes */
53 tegra_mc_write_32(MC_SMMU_TLB_FLUSH_0, MC_SMMU_TLB_FLUSH_ALL);
54
55 /* enable SMMU */
56 tegra_mc_write_32(MC_SMMU_CONFIG_0,
57 MC_SMMU_CONFIG_0_SMMU_ENABLE_ENABLE);
58 (void)tegra_mc_read_32(MC_SMMU_CONFIG_0); /* read to flush writes */
Varun Wadekar7a269e22015-06-10 14:04:32 +053059
60 /* video memory carveout */
Varun Wadekar64443ca2016-12-12 16:14:57 -080061 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI,
62 (uint32_t)(video_mem_base >> 32));
63 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)video_mem_base);
Varun Wadekar7a269e22015-06-10 14:04:32 +053064 tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, video_mem_size);
Varun Wadekarb316e242015-05-19 16:48:04 +053065}
66
67/*
Varun Wadekar6eec6d62016-03-03 13:28:10 -080068 * Restore Memory Controller settings after "System Suspend"
69 */
70void tegra_memctrl_restore_settings(void)
71{
72 tegra_memctrl_setup();
73}
74
75/*
Varun Wadekarb316e242015-05-19 16:48:04 +053076 * Secure the BL31 DRAM aperture.
77 *
78 * phys_base = physical base of TZDRAM aperture
79 * size_in_bytes = size of aperture in bytes
80 */
81void tegra_memctrl_tzdram_setup(uint64_t phys_base, uint32_t size_in_bytes)
82{
83 /*
84 * Setup the Memory controller to allow only secure accesses to
85 * the TZDRAM carveout
86 */
87 INFO("Configuring TrustZone DRAM Memory Carveout\n");
88
89 tegra_mc_write_32(MC_SECURITY_CFG0_0, phys_base);
90 tegra_mc_write_32(MC_SECURITY_CFG1_0, size_in_bytes >> 20);
91}
Varun Wadekar7a269e22015-06-10 14:04:32 +053092
Varun Wadekar0dc91812015-12-30 15:06:41 -080093/*
94 * Secure the BL31 TZRAM aperture.
95 *
96 * phys_base = physical base of TZRAM aperture
97 * size_in_bytes = size of aperture in bytes
98 */
99void tegra_memctrl_tzram_setup(uint64_t phys_base, uint32_t size_in_bytes)
100{
101 /*
102 * The v1 hardware controller does not have any registers
103 * for setting up the on-chip TZRAM.
104 */
105}
106
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100107static void tegra_clear_videomem(uintptr_t non_overlap_area_start,
108 unsigned long long non_overlap_area_size)
109{
110 /*
Varun Wadekarb5132322017-04-10 15:30:17 -0700111 * Map the NS memory first, clean it and then unmap it.
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100112 */
Varun Wadekarb5132322017-04-10 15:30:17 -0700113 mmap_add_dynamic_region(non_overlap_area_start, /* PA */
114 non_overlap_area_start, /* VA */
115 non_overlap_area_size, /* size */
116 MT_NS | MT_RW | MT_EXECUTE_NEVER); /* attrs */
117
Douglas Raillard21362a92016-12-02 13:51:54 +0000118 zeromem((void *)non_overlap_area_start, non_overlap_area_size);
Varun Wadekarb5132322017-04-10 15:30:17 -0700119 flush_dcache_range(non_overlap_area_start, non_overlap_area_size);
120
121 mmap_remove_dynamic_region(non_overlap_area_start,
122 non_overlap_area_size);
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100123}
124
Varun Wadekar7a269e22015-06-10 14:04:32 +0530125/*
126 * Program the Video Memory carveout region
127 *
128 * phys_base = physical base of aperture
129 * size_in_bytes = size of aperture in bytes
130 */
131void tegra_memctrl_videomem_setup(uint64_t phys_base, uint32_t size_in_bytes)
132{
133 uintptr_t vmem_end_old = video_mem_base + (video_mem_size << 20);
134 uintptr_t vmem_end_new = phys_base + size_in_bytes;
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100135 unsigned long long non_overlap_area_size;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530136
137 /*
Varun Wadekar7a269e22015-06-10 14:04:32 +0530138 * Setup the Memory controller to restrict CPU accesses to the Video
139 * Memory region
140 */
141 INFO("Configuring Video Memory Carveout\n");
142
143 /*
144 * Configure Memory Controller directly for the first time.
145 */
146 if (video_mem_base == 0)
147 goto done;
148
149 /*
150 * Clear the old regions now being exposed. The following cases
151 * can occur -
152 *
153 * 1. clear whole old region (no overlap with new region)
154 * 2. clear old sub-region below new base
155 * 3. clear old sub-region above new end
156 */
157 INFO("Cleaning previous Video Memory Carveout\n");
158
Varun Wadekar1be2f972015-08-26 15:06:14 +0530159 if (phys_base > vmem_end_old || video_mem_base > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100160 tegra_clear_videomem(video_mem_base, video_mem_size << 20);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530161 } else {
162 if (video_mem_base < phys_base) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100163 non_overlap_area_size = phys_base - video_mem_base;
164 tegra_clear_videomem(video_mem_base, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530165 }
166 if (vmem_end_old > vmem_end_new) {
Vikram Kanigiri4489ad12015-09-10 14:12:36 +0100167 non_overlap_area_size = vmem_end_old - vmem_end_new;
168 tegra_clear_videomem(vmem_end_new, non_overlap_area_size);
Varun Wadekar1be2f972015-08-26 15:06:14 +0530169 }
170 }
Varun Wadekar7a269e22015-06-10 14:04:32 +0530171
172done:
Varun Wadekar64443ca2016-12-12 16:14:57 -0800173 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI, (uint32_t)(phys_base >> 32));
174 tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)phys_base);
Varun Wadekar7a269e22015-06-10 14:04:32 +0530175 tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, size_in_bytes >> 20);
176
177 /* store new values */
178 video_mem_base = phys_base;
179 video_mem_size = size_in_bytes >> 20;
180}
Varun Wadekarc92050b2017-03-29 14:57:29 -0700181
182/*
183 * During boot, USB3 and flash media (SDMMC/SATA) devices need access to
184 * IRAM. Because these clients connect to the MC and do not have a direct
185 * path to the IRAM, the MC implements AHB redirection during boot to allow
186 * path to IRAM. In this mode, accesses to a programmed memory address aperture
187 * are directed to the AHB bus, allowing access to the IRAM. The AHB aperture
188 * is defined by the IRAM_BASE_LO and IRAM_BASE_HI registers, which are
189 * initialized to disable this aperture.
190 *
191 * Once bootup is complete, we must program IRAM base to 0xffffffff and
192 * IRAM top to 0x00000000, thus disabling access to IRAM. DRAM is then
193 * potentially accessible in this address range. These aperture registers
194 * also have an access_control/lock bit. After disabling the aperture, the
195 * access_control register should be programmed to lock the registers.
196 */
197void tegra_memctrl_disable_ahb_redirection(void)
198{
199 /* program the aperture registers */
200 tegra_mc_write_32(MC_IRAM_BASE_LO, 0xFFFFFFFF);
201 tegra_mc_write_32(MC_IRAM_TOP_LO, 0);
202 tegra_mc_write_32(MC_IRAM_BASE_TOP_HI, 0);
203
204 /* lock the aperture registers */
205 tegra_mc_write_32(MC_IRAM_REG_CTRL, MC_DISABLE_IRAM_CFG_WRITES);
206}