smmu.c 2.03 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3
 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4
 *
dp-arm's avatar
dp-arm committed
5
 * SPDX-License-Identifier: BSD-3-Clause
6
7
8
 */

#include <assert.h>
9
10
#include <string.h>

11
#include <platform_def.h>
12
13
14
15

#include <common/bl_common.h>
#include <common/debug.h>

16
#include <smmu.h>
17
#include <tegra_private.h>
18

19
20
extern void memcpy16(void *dest, const void *src, unsigned int length);

21
22
#define SMMU_NUM_CONTEXTS		64U
#define SMMU_CONTEXT_BANK_MAX_IDX	64U
23

24
25
26
27
28
/*
 * Init SMMU during boot or "System Suspend" exit
 */
void tegra_smmu_init(void)
{
29
	uint32_t val, cb_idx, smmu_id, ctx_base;
30
31
	uint32_t smmu_counter = plat_get_num_smmu_devices();

32
	for (smmu_id = 0U; smmu_id < smmu_counter; smmu_id++) {
33
34
35
		/* Program the SMMU pagesize and reset CACHE_LOCK bit */
		val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
		val |= SMMU_GSR0_PGSIZE_64K;
36
		val &= (uint32_t)~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
37
38
39
40
		tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);

		/* reset CACHE LOCK bit for NS Aux. Config. Register */
		val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
41
		val &= (uint32_t)~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
42
43
44
45
46
47
48
49
		tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);

		/* disable TCU prefetch for all contexts */
		ctx_base = (SMMU_GSR0_PGSIZE_64K * SMMU_NUM_CONTEXTS)
				+ SMMU_CBn_ACTLR;
		for (cb_idx = 0; cb_idx < SMMU_CONTEXT_BANK_MAX_IDX; cb_idx++) {
			val = tegra_smmu_read_32(smmu_id,
				ctx_base + (SMMU_GSR0_PGSIZE_64K * cb_idx));
50
			val &= (uint32_t)~SMMU_CBn_ACTLR_CPRE_BIT;
51
52
53
54
55
56
			tegra_smmu_write_32(smmu_id, ctx_base +
				(SMMU_GSR0_PGSIZE_64K * cb_idx), val);
		}

		/* set CACHE LOCK bit for NS Aux. Config. Register */
		val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
57
		val |= (uint32_t)SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
58
59
60
61
		tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);

		/* set CACHE LOCK bit for S Aux. Config. Register */
		val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
62
		val |= (uint32_t)SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
63
		tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);
64
	}
65
}