smmu_v3.h 869 Bytes
Newer Older
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
1
/*
2
 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef SMMU_V3_H
#define SMMU_V3_H
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
9
10

#include <stdint.h>
11
#include <lib/utils_def.h>
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
12
13

/* SMMUv3 register offsets from device base */
14
#define SMMU_GBPA	U(0x0044)
15
16
#define SMMU_S_IDR1	U(0x8004)
#define SMMU_S_INIT	U(0x803c)
17
18
19
20
21
#define SMMU_S_GBPA	U(0x8044)

/* SMMU_GBPA register fields */
#define SMMU_GBPA_UPDATE		(1UL << 31)
#define SMMU_GBPA_ABORT			(1UL << 20)
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
22
23

/* SMMU_S_IDR1 register fields */
24
#define SMMU_S_IDR1_SECURE_IMPL		(1UL << 31)
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
25
26

/* SMMU_S_INIT register fields */
27
#define SMMU_S_INIT_INV_ALL		(1UL << 0)
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
28

29
30
31
/* SMMU_S_GBPA register fields */
#define SMMU_S_GBPA_UPDATE		(1UL << 31)
#define SMMU_S_GBPA_ABORT		(1UL << 20)
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
32
33

int smmuv3_init(uintptr_t smmu_base);
34
int smmuv3_security_init(uintptr_t smmu_base);
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
35

36
#endif /* SMMU_V3_H */