juno_def.h 3.28 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2018, 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
8
#ifndef JUNO_DEF_H
#define JUNO_DEF_H
9

10
#include <utils_def.h>
11
12
13
14

/*******************************************************************************
 * Juno memory map related constants
 ******************************************************************************/
15
16

/* Board revisions */
17
18
#define REV_JUNO_R0			0x1	/* Rev B */
#define REV_JUNO_R1			0x2	/* Rev C */
19
#define REV_JUNO_R2			0x3	/* Rev D */
20

21
22
/* Bypass offset from start of NOR flash */
#define BL1_ROM_BYPASS_OFFSET		0x03EC0000
23

24
25
#define EMMC_BASE			0x0c000000
#define EMMC_SIZE			0x04000000
26

27
28
#define PSRAM_BASE			0x14000000
#define PSRAM_SIZE			0x02000000
29

30
#define JUNO_SSC_VER_PART_NUM		0x030
31

32
33
34
35
36
37
38
/*******************************************************************************
 * Juno topology related constants
 ******************************************************************************/
#define JUNO_CLUSTER_COUNT		2
#define JUNO_CLUSTER0_CORE_COUNT	2
#define JUNO_CLUSTER1_CORE_COUNT	4

39
40
41
/*******************************************************************************
 * TZC-400 related constants
 ******************************************************************************/
42
43
44
45
46
47
48
49
50
51
52
#define TZC400_NSAID_CCI400		0  /* Note: Same as default NSAID!! */
#define TZC400_NSAID_PCIE		1
#define TZC400_NSAID_HDLCD0		2
#define TZC400_NSAID_HDLCD1		3
#define TZC400_NSAID_USB		4
#define TZC400_NSAID_DMA330		5
#define TZC400_NSAID_THINLINKS		6
#define TZC400_NSAID_AP			9
#define TZC400_NSAID_GPU		10
#define TZC400_NSAID_SCP		11
#define TZC400_NSAID_CORESIGHT		12
53

54
55
56
57
58
59
60
61
62
/*******************************************************************************
 * TRNG related constants
 ******************************************************************************/
#define TRNG_BASE	0x7FE60000ULL
#define TRNG_NOUTPUTS	4
#define TRNG_STATUS	0x10
#define TRNG_INTMASK	0x14
#define TRNG_CONFIG	0x18
#define TRNG_CONTROL	0x1C
63
#define TRNG_NBYTES	16	/* Number of bytes generated per round. */
64

65
66
67
/*******************************************************************************
 * MMU-401 related constants
 ******************************************************************************/
68
69
70
#define MMU401_SSD_OFFSET		0x4000
#define MMU401_DMA330_BASE		0x7fb00000

71
72
73
74
75
76
77
78
79
80
81
/*******************************************************************************
 * Interrupt handling constants
 ******************************************************************************/
#define JUNO_IRQ_DMA_SMMU		126
#define JUNO_IRQ_HDLCD0_SMMU		128
#define JUNO_IRQ_HDLCD1_SMMU		130
#define JUNO_IRQ_USB_SMMU		132
#define JUNO_IRQ_THIN_LINKS_SMMU	134
#define JUNO_IRQ_SEC_I2C		137
#define JUNO_IRQ_GPU_SMMU_1		73
#define JUNO_IRQ_ETR_SMMU		75
82

83
84
85
86
87
88
89
90
91
92
93
/*******************************************************************************
 * Memprotect definitions
 ******************************************************************************/
/* PSCI memory protect definitions:
 * This variable is stored in a non-secure flash because some ARM reference
 * platforms do not have secure NVRAM. Real systems that provided MEM_PROTECT
 * support must use a secure NVRAM to store the PSCI MEM_PROTECT definitions.
 */
#define PLAT_ARM_MEM_PROT_ADDR		(V2M_FLASH0_BASE + \
					 V2M_FLASH0_SIZE - V2M_FLASH_BLOCK_SIZE)

94
#endif /* JUNO_DEF_H */