platform_def.h 2.38 KB
Newer Older
Haojian Zhuang's avatar
Haojian Zhuang committed
1
/*
2
 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
Haojian Zhuang's avatar
Haojian Zhuang committed
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef PLATFORM_DEF_H
#define PLATFORM_DEF_H
Haojian Zhuang's avatar
Haojian Zhuang committed
9
10

#include <arch.h>
11
12
13
14
#include <common/tbbr/tbbr_img_def.h>
#include <lib/utils_def.h>
#include <plat/common/common_def.h>

15
16
#include <hikey_def.h>
#include <hikey_layout.h>		/* BL memory region sizes, etc */
Haojian Zhuang's avatar
Haojian Zhuang committed
17

18
19
20
/* Special value used to verify platform parameters from BL2 to BL3-1 */
#define HIKEY_BL31_PLAT_PARAM_VAL	0x0f1e2d3c4b5a6978ULL

Haojian Zhuang's avatar
Haojian Zhuang committed
21
22
23
24
25
/*
 * Generic platform constants
 */

/* Size of cacheable stacks */
26
#define PLATFORM_STACK_SIZE		0x1000
Haojian Zhuang's avatar
Haojian Zhuang committed
27
28
29
30

#define FIRMWARE_WELCOME_STR		"Booting Trusted Firmware\n"

#define PLATFORM_CACHE_LINE_SIZE	64
31
32
#define PLATFORM_CLUSTER_COUNT		U(2)
#define PLATFORM_CORE_COUNT_PER_CLUSTER	U(4)
Haojian Zhuang's avatar
Haojian Zhuang committed
33
34
#define PLATFORM_CORE_COUNT		(PLATFORM_CLUSTER_COUNT *	\
					 PLATFORM_CORE_COUNT_PER_CLUSTER)
35
#define PLAT_MAX_PWR_LVL		(MPIDR_AFFLVL2)
Haojian Zhuang's avatar
Haojian Zhuang committed
36
#define PLAT_NUM_PWR_DOMAINS		(PLATFORM_CORE_COUNT + \
37
					 PLATFORM_CLUSTER_COUNT + U(1))
Haojian Zhuang's avatar
Haojian Zhuang committed
38

39
40
#define PLAT_MAX_RET_STATE		U(1)
#define PLAT_MAX_OFF_STATE		U(2)
Haojian Zhuang's avatar
Haojian Zhuang committed
41
42
43
44

#define MAX_IO_DEVICES			3
#define MAX_IO_HANDLES			4
/* eMMC RPMB and eMMC User Data */
45
#define MAX_IO_BLOCK_DEVICES		U(2)
Haojian Zhuang's avatar
Haojian Zhuang committed
46
47
48
49
50
51
52
53
54
55

/* GIC related constants (no GICR in GIC-400) */
#define PLAT_ARM_GICD_BASE		0xF6801000
#define PLAT_ARM_GICC_BASE		0xF6802000
#define PLAT_ARM_GICH_BASE		0xF6804000
#define PLAT_ARM_GICV_BASE		0xF6806000

/*
 * Platform specific page table and MMU setup constants
 */
56
57
#define PLAT_VIRT_ADDR_SPACE_SIZE   (1ULL << 32)
#define PLAT_PHY_ADDR_SPACE_SIZE    (1ULL << 32)
Haojian Zhuang's avatar
Haojian Zhuang committed
58

Roberto Vargas's avatar
Roberto Vargas committed
59
#if defined(IMAGE_BL1) || defined(IMAGE_BL32)
Haojian Zhuang's avatar
Haojian Zhuang committed
60
61
62
#define MAX_XLAT_TABLES			3
#endif

Roberto Vargas's avatar
Roberto Vargas committed
63
#ifdef IMAGE_BL31
64
65
66
#define MAX_XLAT_TABLES			4
#endif

Roberto Vargas's avatar
Roberto Vargas committed
67
#ifdef IMAGE_BL2
68
69
70
#define MAX_XLAT_TABLES			4
#endif

Haojian Zhuang's avatar
Haojian Zhuang committed
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#define MAX_MMAP_REGIONS		16

/*
 * Declarations and constants to access the mailboxes safely. Each mailbox is
 * aligned on the biggest cache line size in the platform. This is known only
 * to the platform as it might have a combination of integrated and external
 * caches. Such alignment ensures that two maiboxes do not sit on the same cache
 * line at any cache level. They could belong to different cpus/clusters &
 * get written while being protected by different locks causing corruption of
 * a valid mailbox address.
 */
#define CACHE_WRITEBACK_SHIFT		6
#define CACHE_WRITEBACK_GRANULE		(1 << CACHE_WRITEBACK_SHIFT)

85
#endif /* PLATFORM_DEF_H */