memctrl_v2.c 12.1 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <assert.h>
8
9
10
11
12
13
14
15
16
#include <string.h>

#include <arch_helpers.h>
#include <common/bl_common.h>
#include <common/debug.h>
#include <lib/mmio.h>
#include <lib/utils.h>
#include <lib/xlat_tables/xlat_tables_v2.h>

17
18
19
#include <mce.h>
#include <memctrl.h>
#include <memctrl_v2.h>
20
#include <smmu.h>
21
#include <tegra_def.h>
22
#include <tegra_platform.h>
23
24
25

/* Video Memory base and size (live values) */
static uint64_t video_mem_base;
26
static uint64_t video_mem_size_mb;
27

28
29
30
31
32
33
34
35
36
37
/*
 * The following platform setup functions are weakly defined. They
 * provide typical implementations that will be overridden by a SoC.
 */
#pragma weak plat_memctrl_tzdram_setup
void plat_memctrl_tzdram_setup(uint64_t phys_base, uint64_t size_in_bytes)
{
	; /* do nothing */
}

38
/*
39
 * Init Memory controller during boot.
40
41
42
43
 */
void tegra_memctrl_setup(void)
{
	uint32_t val;
44
45
46
47
	const uint32_t *mc_streamid_override_regs;
	uint32_t num_streamid_override_regs;
	const mc_streamid_security_cfg_t *mc_streamid_sec_cfgs;
	uint32_t num_streamid_sec_cfgs;
48
	const tegra_mc_settings_t *plat_mc_settings = tegra_get_mc_settings();
49
	uint32_t i;
50
51
52

	INFO("Tegra Memory Controller (v2)\n");

53
#if ENABLE_SMMU_DEVICE
54
	/* Program the SMMU pagesize */
55
	tegra_smmu_init();
56
#endif
57
	/* Get the settings from the platform */
58
	assert(plat_mc_settings != NULL);
59
60
61
62
	mc_streamid_override_regs = plat_mc_settings->streamid_override_cfg;
	num_streamid_override_regs = plat_mc_settings->num_streamid_override_cfgs;
	mc_streamid_sec_cfgs = plat_mc_settings->streamid_security_cfg;
	num_streamid_sec_cfgs = plat_mc_settings->num_streamid_security_cfgs;
63
64

	/* Program all the Stream ID overrides */
65
66
	for (i = 0; i < num_streamid_override_regs; i++)
		tegra_mc_streamid_write_32(mc_streamid_override_regs[i],
67
68
69
			MC_STREAM_ID_MAX);

	/* Program the security config settings for all Stream IDs */
70
71
72
73
74
	for (i = 0; i < num_streamid_sec_cfgs; i++) {
		val = mc_streamid_sec_cfgs[i].override_enable << 16 |
		      mc_streamid_sec_cfgs[i].override_client_inputs << 8 |
		      mc_streamid_sec_cfgs[i].override_client_ns_flag << 0;
		tegra_mc_streamid_write_32(mc_streamid_sec_cfgs[i].offset, val);
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
	}

	/*
	 * All requests at boot time, and certain requests during
	 * normal run time, are physically addressed and must bypass
	 * the SMMU. The client hub logic implements a hardware bypass
	 * path around the Translation Buffer Units (TBU). During
	 * boot-time, the SMMU_BYPASS_CTRL register (which defaults to
	 * TBU_BYPASS mode) will be used to steer all requests around
	 * the uninitialized TBUs. During normal operation, this register
	 * is locked into TBU_BYPASS_SID config, which routes requests
	 * with special StreamID 0x7f on the bypass path and all others
	 * through the selected TBU. This is done to disable SMMU Bypass
	 * mode, as it could be used to circumvent SMMU security checks.
	 */
	tegra_mc_write_32(MC_SMMU_BYPASS_CONFIG,
91
			  MC_SMMU_BYPASS_CONFIG_SETTINGS);
92

93
94
95
96
97
98
	/*
	 * Re-configure MSS to allow ROC to deal with ordering of the
	 * Memory Controller traffic. This is needed as the Memory Controller
	 * boots with MSS having all control, but ROC provides a performance
	 * boost as compared to MSS.
	 */
99
100
101
	if (plat_mc_settings->reconfig_mss_clients != NULL) {
		plat_mc_settings->reconfig_mss_clients();
	}
102

103
	/* Program overrides for MC transactions */
104
105
106
	if (plat_mc_settings->set_txn_overrides != NULL) {
		plat_mc_settings->set_txn_overrides();
	}
107
}
108

109
110
111
112
113
/*
 * Restore Memory Controller settings after "System Suspend"
 */
void tegra_memctrl_restore_settings(void)
{
114
115
116
117
	const tegra_mc_settings_t *plat_mc_settings = tegra_get_mc_settings();

	assert(plat_mc_settings != NULL);

118
119
120
121
122
123
	/*
	 * Re-configure MSS to allow ROC to deal with ordering of the
	 * Memory Controller traffic. This is needed as the Memory Controller
	 * resets during System Suspend with MSS having all control, but ROC
	 * provides a performance boost as compared to MSS.
	 */
124
125
126
	if (plat_mc_settings->reconfig_mss_clients != NULL) {
		plat_mc_settings->reconfig_mss_clients();
	}
127

128
	/* Program overrides for MC transactions */
129
130
131
	if (plat_mc_settings->set_txn_overrides != NULL) {
		plat_mc_settings->set_txn_overrides();
	}
132

133
	/* video memory carveout region */
134
	if (video_mem_base != 0ULL) {
135
136
137
138
		tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO,
				  (uint32_t)video_mem_base);
		tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI,
				  (uint32_t)(video_mem_base >> 32));
139
		tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, video_mem_size_mb);
140
141

		/*
142
		 * MCE propagates the VideoMem configuration values across the
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
		 * CCPLEX.
		 */
		mce_update_gsc_videomem();
	}
}

/*
 * Secure the BL31 DRAM aperture.
 *
 * phys_base = physical base of TZDRAM aperture
 * size_in_bytes = size of aperture in bytes
 */
void tegra_memctrl_tzdram_setup(uint64_t phys_base, uint32_t size_in_bytes)
{
	/*
	 * Setup the Memory controller to allow only secure accesses to
	 * the TZDRAM carveout
	 */
	INFO("Configuring TrustZone DRAM Memory Carveout\n");

	tegra_mc_write_32(MC_SECURITY_CFG0_0, (uint32_t)phys_base);
	tegra_mc_write_32(MC_SECURITY_CFG3_0, (uint32_t)(phys_base >> 32));
	tegra_mc_write_32(MC_SECURITY_CFG1_0, size_in_bytes >> 20);

167
	/*
168
	 * Perform platform specific steps.
169
	 */
170
	plat_memctrl_tzdram_setup(phys_base, size_in_bytes);
171

172
	/*
173
	 * MCE propagates the security configuration values across the
174
175
176
177
178
	 * CCPLEX.
	 */
	mce_update_gsc_tzdram();
}

179
180
181
182
183
184
185
186
/*
 * Secure the BL31 TZRAM aperture.
 *
 * phys_base = physical base of TZRAM aperture
 * size_in_bytes = size of aperture in bytes
 */
void tegra_memctrl_tzram_setup(uint64_t phys_base, uint32_t size_in_bytes)
{
187
188
	uint32_t index;
	uint32_t total_128kb_blocks = size_in_bytes >> 17;
189
	uint32_t residual_4kb_blocks = (size_in_bytes & (uint32_t)0x1FFFF) >> 12;
190
191
	uint32_t val;

192
193
	INFO("Configuring TrustZone SRAM Memory Carveout\n");

194
	/*
195
196
	 * Reset the access configuration registers to restrict access
	 * to the TZRAM aperture
197
	 */
198
	for (index = MC_TZRAM_CLIENT_ACCESS0_CFG0;
199
200
	     index < ((uint32_t)MC_TZRAM_CARVEOUT_CFG + (uint32_t)MC_GSC_CONFIG_REGS_SIZE);
	     index += 4U) {
201
		tegra_mc_write_32(index, 0);
202
	}
203

204
205
206
207
208
209
210
211
212
	/*
	 * Enable CPU access configuration registers to access the TZRAM aperture
	 */
	if (!tegra_chipid_is_t186()) {
		val = tegra_mc_read_32(MC_TZRAM_CLIENT_ACCESS1_CFG0);
		val |= TZRAM_ALLOW_MPCORER | TZRAM_ALLOW_MPCOREW;
		tegra_mc_write_32(MC_TZRAM_CLIENT_ACCESS1_CFG0, val);
	}

213
214
215
	/*
	 * Set the TZRAM base. TZRAM base must be 4k aligned, at least.
	 */
216
	assert((phys_base & (uint64_t)0xFFF) == 0U);
217
218
	tegra_mc_write_32(MC_TZRAM_BASE_LO, (uint32_t)phys_base);
	tegra_mc_write_32(MC_TZRAM_BASE_HI,
219
		(uint32_t)(phys_base >> 32) & MC_GSC_BASE_HI_MASK);
220

221
222
223
224
225
226
227
	/*
	 * Set the TZRAM size
	 *
	 * total size = (number of 128KB blocks) + (number of remaining 4KB
	 * blocks)
	 *
	 */
228
	val = (residual_4kb_blocks << MC_GSC_SIZE_RANGE_4KB_SHIFT) |
229
230
	      total_128kb_blocks;
	tegra_mc_write_32(MC_TZRAM_SIZE, val);
231

232
233
234
235
236
237
	/*
	 * Lock the configuration settings by disabling TZ-only lock
	 * and locking the configuration against any future changes
	 * at all.
	 */
	val = tegra_mc_read_32(MC_TZRAM_CARVEOUT_CFG);
238
	val &= (uint32_t)~MC_GSC_ENABLE_TZ_LOCK_BIT;
239
	val |= MC_GSC_LOCK_CFG_SETTINGS_BIT;
240
241
242
	if (!tegra_chipid_is_t186()) {
		val |= MC_GSC_ENABLE_CPU_SECURE_BIT;
	}
243
	tegra_mc_write_32(MC_TZRAM_CARVEOUT_CFG, val);
244
245

	/*
246
	 * MCE propagates the security configuration values across the
247
248
249
250
251
	 * CCPLEX.
	 */
	mce_update_gsc_tzram();
}

252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
static void tegra_lock_videomem_nonoverlap(uint64_t phys_base,
					   uint64_t size_in_bytes)
{
	uint32_t index;
	uint64_t total_128kb_blocks = size_in_bytes >> 17;
	uint64_t residual_4kb_blocks = (size_in_bytes & (uint32_t)0x1FFFF) >> 12;
	uint64_t val;

	/*
	 * Reset the access configuration registers to restrict access to
	 * old Videomem aperture
	 */
	for (index = MC_VIDEO_PROTECT_CLEAR_ACCESS_CFG0;
	     index < ((uint32_t)MC_VIDEO_PROTECT_CLEAR_ACCESS_CFG0 + (uint32_t)MC_GSC_CONFIG_REGS_SIZE);
	     index += 4U) {
		tegra_mc_write_32(index, 0);
	}

	/*
	 * Set the base. It must be 4k aligned, at least.
	 */
	assert((phys_base & (uint64_t)0xFFF) == 0U);
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_BASE_LO, (uint32_t)phys_base);
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_BASE_HI,
		(uint32_t)(phys_base >> 32) & (uint32_t)MC_GSC_BASE_HI_MASK);

	/*
	 * Set the aperture size
	 *
	 * total size = (number of 128KB blocks) + (number of remaining 4KB
	 * blocks)
	 *
	 */
	val = (uint32_t)((residual_4kb_blocks << MC_GSC_SIZE_RANGE_4KB_SHIFT) |
			 total_128kb_blocks);
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_SIZE, (uint32_t)val);

	/*
	 * Lock the configuration settings by enabling TZ-only lock and
	 * locking the configuration against any future changes from NS
	 * world.
	 */
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_CFG,
			  (uint32_t)MC_GSC_ENABLE_TZ_LOCK_BIT);

	/*
	 * MCE propagates the GSC configuration values across the
	 * CCPLEX.
	 */
}

static void tegra_unlock_videomem_nonoverlap(void)
{
	/* Clear the base */
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_BASE_LO, 0);
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_BASE_HI, 0);

	/* Clear the size */
	tegra_mc_write_32(MC_VIDEO_PROTECT_CLEAR_SIZE, 0);
}

static void tegra_clear_videomem(uintptr_t non_overlap_area_start,
				 unsigned long long non_overlap_area_size)
{
316
317
	int ret;

318
319
320
	/*
	 * Map the NS memory first, clean it and then unmap it.
	 */
321
	ret = mmap_add_dynamic_region(non_overlap_area_start, /* PA */
322
323
324
				non_overlap_area_start, /* VA */
				non_overlap_area_size, /* size */
				MT_NS | MT_RW | MT_EXECUTE_NEVER); /* attrs */
325
	assert(ret == 0);
326
327
328
329

	zero_normalmem((void *)non_overlap_area_start, non_overlap_area_size);
	flush_dcache_range(non_overlap_area_start, non_overlap_area_size);

330
	(void)mmap_remove_dynamic_region(non_overlap_area_start,
331
332
333
		non_overlap_area_size);
}

334
335
336
337
338
339
340
341
/*
 * Program the Video Memory carveout region
 *
 * phys_base = physical base of aperture
 * size_in_bytes = size of aperture in bytes
 */
void tegra_memctrl_videomem_setup(uint64_t phys_base, uint32_t size_in_bytes)
{
342
343
344
	uintptr_t vmem_end_old = video_mem_base + (video_mem_size_mb << 20);
	uintptr_t vmem_end_new = phys_base + size_in_bytes;
	unsigned long long non_overlap_area_size;
345

346
347
348
349
350
351
	/*
	 * Setup the Memory controller to restrict CPU accesses to the Video
	 * Memory region
	 */
	INFO("Configuring Video Memory Carveout\n");

352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
	/*
	 * Configure Memory Controller directly for the first time.
	 */
	if (video_mem_base == 0U)
		goto done;

	/*
	 * Lock the non overlapping memory being cleared so that other masters
	 * do not accidently write to it. The memory would be unlocked once
	 * the non overlapping region is cleared and the new memory
	 * settings take effect.
	 */
	tegra_lock_videomem_nonoverlap(video_mem_base,
				       video_mem_size_mb << 20);

	/*
	 * Clear the old regions now being exposed. The following cases
	 * can occur -
	 *
	 * 1. clear whole old region (no overlap with new region)
	 * 2. clear old sub-region below new base
	 * 3. clear old sub-region above new end
	 */
	INFO("Cleaning previous Video Memory Carveout\n");

377
	if ((phys_base > vmem_end_old) || (video_mem_base > vmem_end_new)) {
378
		tegra_clear_videomem(video_mem_base,
379
				     (uint32_t)video_mem_size_mb << 20U);
380
381
382
	} else {
		if (video_mem_base < phys_base) {
			non_overlap_area_size = phys_base - video_mem_base;
383
384
			tegra_clear_videomem(video_mem_base,
					(uint32_t)non_overlap_area_size);
385
386
387
		}
		if (vmem_end_old > vmem_end_new) {
			non_overlap_area_size = vmem_end_old - vmem_end_new;
388
389
			tegra_clear_videomem(vmem_end_new,
					(uint32_t)non_overlap_area_size);
390
391
392
393
394
		}
	}

done:
	/* program the Videomem aperture */
395
396
397
	tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_LO, (uint32_t)phys_base);
	tegra_mc_write_32(MC_VIDEO_PROTECT_BASE_HI,
			  (uint32_t)(phys_base >> 32));
398
	tegra_mc_write_32(MC_VIDEO_PROTECT_SIZE_MB, size_in_bytes >> 20);
399

400
401
402
	/* unlock the previous locked nonoverlapping aperture */
	tegra_unlock_videomem_nonoverlap();

403
404
	/* store new values */
	video_mem_base = phys_base;
405
	video_mem_size_mb = size_in_bytes >> 20;
406
407

	/*
408
	 * MCE propagates the VideoMem configuration values across the
409
410
411
412
	 * CCPLEX.
	 */
	mce_update_gsc_videomem();
}
413
414
415
416
417
418
419
420

/*
 * This feature exists only for v1 of the Tegra Memory Controller.
 */
void tegra_memctrl_disable_ahb_redirection(void)
{
	; /* do nothing */
}
421
422
423
424
425

void tegra_memctrl_clear_pending_interrupts(void)
{
	; /* do nothing */
}