blob: a09b5c629ff3ab826910974c89caa30e86baa324 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
2 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08005 */
6
7#ifndef __PLATFORM_DEF_H__
8#define __PLATFORM_DEF_H__
9
10#include <arch.h>
11#include "../zynqmp_def.h"
12
13/*******************************************************************************
14 * Generic platform constants
15 ******************************************************************************/
16
17/* Size of cacheable stacks */
18#define PLATFORM_STACK_SIZE 0x440
19
20#define PLATFORM_CORE_COUNT 4
21#define PLAT_NUM_POWER_DOMAINS 5
22#define PLAT_MAX_PWR_LVL 1
23#define PLAT_MAX_RET_STATE 1
24#define PLAT_MAX_OFF_STATE 2
25
26/*******************************************************************************
27 * BL31 specific defines.
28 ******************************************************************************/
Soren Brinkmann76fcae32016-03-06 20:16:27 -080029/*
30 * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
31 * present). BL31_BASE is calculated using the current BL31 debug size plus a
32 * little space for growth.
33 */
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070034#ifndef ZYNQMP_ATF_MEM_BASE
Soren Brinkmann802ba1d2016-07-15 06:23:37 -070035# define BL31_BASE 0xfffea000
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070036# define BL31_LIMIT 0xffffffff
Soren Brinkmann76fcae32016-03-06 20:16:27 -080037#else
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070038# define BL31_BASE (ZYNQMP_ATF_MEM_BASE)
39# define BL31_LIMIT (ZYNQMP_ATF_MEM_BASE + ZYNQMP_ATF_MEM_SIZE - 1)
40# ifdef ZYNQMP_ATF_MEM_PROGBITS_SIZE
41# define BL31_PROGBITS_LIMIT (ZYNQMP_ATF_MEM_BASE + ZYNQMP_ATF_MEM_PROGBITS_SIZE - 1)
42# endif
Soren Brinkmann76fcae32016-03-06 20:16:27 -080043#endif
44
45/*******************************************************************************
46 * BL32 specific defines.
47 ******************************************************************************/
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070048#ifndef ZYNQMP_BL32_MEM_BASE
49# define BL32_BASE 0x60000000
50# define BL32_LIMIT 0x7fffffff
Soren Brinkmann76fcae32016-03-06 20:16:27 -080051#else
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070052# define BL32_BASE (ZYNQMP_BL32_MEM_BASE)
53# define BL32_LIMIT (ZYNQMP_BL32_MEM_BASE + ZYNQMP_BL32_MEM_SIZE - 1)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080054#endif
55
Soren Brinkmann4a9ca042016-04-14 10:27:00 -070056/*******************************************************************************
57 * BL33 specific defines.
58 ******************************************************************************/
59#ifndef PRELOADED_BL33_BASE
60# define PLAT_ARM_NS_IMAGE_OFFSET 0x8000000
61#else
62# define PLAT_ARM_NS_IMAGE_OFFSET PRELOADED_BL33_BASE
63#endif
64
65/*******************************************************************************
66 * TSP specific defines.
67 ******************************************************************************/
68#define TSP_SEC_MEM_BASE BL32_BASE
69#define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE + 1)
70
71/* ID of the secure physical generic timer interrupt used by the TSP */
Soren Brinkmann76fcae32016-03-06 20:16:27 -080072#define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
73
74/*******************************************************************************
75 * Platform specific page table and MMU setup constants
76 ******************************************************************************/
Soren Brinkmann6a9e03e2017-01-06 11:07:00 -080077#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32)
78#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32)
Soren Brinkmann6d1ba582016-07-08 14:45:14 -070079#define MAX_MMAP_REGIONS 7
Soren Brinkmann7ac746c2016-07-25 10:33:53 -070080#define MAX_XLAT_TABLES 5
Soren Brinkmann76fcae32016-03-06 20:16:27 -080081
82#define CACHE_WRITEBACK_SHIFT 6
83#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
84
85#define PLAT_ARM_GICD_BASE BASE_GICD_BASE
86#define PLAT_ARM_GICC_BASE BASE_GICC_BASE
87/*
88 * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
89 * terminology. On a GICv2 system or mode, the lists will be merged and treated
90 * as Group 0 interrupts.
91 */
92#define PLAT_ARM_G1S_IRQS ARM_IRQ_SEC_PHY_TIMER, \
Soren Brinkmann76fcae32016-03-06 20:16:27 -080093 ARM_IRQ_SEC_SGI_0, \
94 ARM_IRQ_SEC_SGI_1, \
95 ARM_IRQ_SEC_SGI_2, \
96 ARM_IRQ_SEC_SGI_3, \
97 ARM_IRQ_SEC_SGI_4, \
98 ARM_IRQ_SEC_SGI_5, \
99 ARM_IRQ_SEC_SGI_6, \
100 ARM_IRQ_SEC_SGI_7
101
102#define PLAT_ARM_G0_IRQS
103
104#endif /* __PLATFORM_DEF_H__ */