blob: d6014d39255dc3b9494b956d56086c93c1fc86c8 [file] [log] [blame]
Hadi Asyrafi616da772019-06-27 11:34:03 +08001/*
2 * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
3 * Copyright (c) 2019, Intel Corporation. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#ifndef PLATFORM_DEF_H
9#define PLATFORM_DEF_H
10
11#include <arch.h>
12#include <common/interrupt_props.h>
13#include <common/tbbr/tbbr_img_def.h>
14#include <plat/common/common_def.h>
15
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080016#define PLAT_SOCFPGA_STRATIX10 1
17#define PLAT_SOCFPGA_AGILEX 2
Hadi Asyrafi616da772019-06-27 11:34:03 +080018
Hadi Asyrafi0563a852019-10-22 12:59:32 +080019/* sysmgr.boot_scratch_cold4 & 5 used for CPU release address for SPL */
20#define PLAT_CPU_RELEASE_ADDR 0xffd12210
21
Hadi Asyrafi616da772019-06-27 11:34:03 +080022/* Define next boot image name and offset */
23#define PLAT_NS_IMAGE_OFFSET 0x50000
24#define PLAT_HANDOFF_OFFSET 0xFFE3F000
25
26/*******************************************************************************
27 * Platform binary types for linking
28 ******************************************************************************/
29#define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
30#define PLATFORM_LINKER_ARCH aarch64
31
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080032/* SoCFPGA supports up to 124GB RAM */
Hadi Asyrafi616da772019-06-27 11:34:03 +080033#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 39)
34#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 39)
35
36
37/*******************************************************************************
38 * Generic platform constants
39 ******************************************************************************/
40#define PLAT_PRIMARY_CPU 0
41#define PLAT_SECONDARY_ENTRY_BASE 0x01f78bf0
42
43/* Size of cacheable stacks */
44#define PLATFORM_STACK_SIZE 0x2000
45
46/* PSCI related constant */
47#define PLAT_NUM_POWER_DOMAINS 5
48#define PLAT_MAX_PWR_LVL 1
49#define PLAT_MAX_RET_STATE 1
50#define PLAT_MAX_OFF_STATE 2
51#define PLATFORM_SYSTEM_COUNT 1
52#define PLATFORM_CLUSTER_COUNT 1
53#define PLATFORM_CLUSTER0_CORE_COUNT 4
54#define PLATFORM_CLUSTER1_CORE_COUNT 0
55#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER1_CORE_COUNT + \
56 PLATFORM_CLUSTER0_CORE_COUNT)
57#define PLATFORM_MAX_CPUS_PER_CLUSTER 4
58
59/* Interrupt related constant */
60
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080061#define INTEL_SOCFPGA_IRQ_SEC_PHY_TIMER 29
Hadi Asyrafi616da772019-06-27 11:34:03 +080062
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080063#define INTEL_SOCFPGA_IRQ_SEC_SGI_0 8
64#define INTEL_SOCFPGA_IRQ_SEC_SGI_1 9
65#define INTEL_SOCFPGA_IRQ_SEC_SGI_2 10
66#define INTEL_SOCFPGA_IRQ_SEC_SGI_3 11
67#define INTEL_SOCFPGA_IRQ_SEC_SGI_4 12
68#define INTEL_SOCFPGA_IRQ_SEC_SGI_5 13
69#define INTEL_SOCFPGA_IRQ_SEC_SGI_6 14
70#define INTEL_SOCFPGA_IRQ_SEC_SGI_7 15
Hadi Asyrafi616da772019-06-27 11:34:03 +080071
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080072#define TSP_IRQ_SEC_PHY_TIMER INTEL_SOCFPGA_IRQ_SEC_PHY_TIMER
Hadi Asyrafi616da772019-06-27 11:34:03 +080073#define TSP_SEC_MEM_BASE BL32_BASE
74#define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE + 1)
75/*******************************************************************************
76 * Platform memory map related constants
77 ******************************************************************************/
78#define DRAM_BASE (0x0)
79#define DRAM_SIZE (0x80000000)
80
81#define OCRAM_BASE (0xFFE00000)
82#define OCRAM_SIZE (0x00040000)
83
84#define MEM64_BASE (0x0100000000)
85#define MEM64_SIZE (0x1F00000000)
86
87#define DEVICE1_BASE (0x80000000)
88#define DEVICE1_SIZE (0x60000000)
89
90#define DEVICE2_BASE (0xF7000000)
91#define DEVICE2_SIZE (0x08E00000)
92
93#define DEVICE3_BASE (0xFFFC0000)
94#define DEVICE3_SIZE (0x00008000)
95
96#define DEVICE4_BASE (0x2000000000)
97#define DEVICE4_SIZE (0x0100000000)
98
99/*******************************************************************************
100 * BL31 specific defines.
101 ******************************************************************************/
102/*
103 * Put BL3-1 at the top of the Trusted SRAM (just below the shared memory, if
104 * present). BL31_BASE is calculated using the current BL3-1 debug size plus a
105 * little space for growth.
106 */
107
Hadi Asyrafia2edf0e2019-10-22 13:39:14 +0800108
109#define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n"
Hadi Asyrafi616da772019-06-27 11:34:03 +0800110
Hadi Asyrafia2edf0e2019-10-22 13:39:14 +0800111#define BL1_RO_BASE (0xffe00000)
112#define BL1_RO_LIMIT (0xffe0f000)
113#define BL1_RW_BASE (0xffe10000)
114#define BL1_RW_LIMIT (0xffe1ffff)
115#define BL1_RW_SIZE (0x14000)
Hadi Asyrafi616da772019-06-27 11:34:03 +0800116
Hadi Asyrafia2edf0e2019-10-22 13:39:14 +0800117#define BL2_BASE (0xffe00000)
118#define BL2_LIMIT (0xffe1b000)
Hadi Asyrafi616da772019-06-27 11:34:03 +0800119
Hadi Asyrafia2edf0e2019-10-22 13:39:14 +0800120#define BL31_BASE (0x1000)
121#define BL31_LIMIT (0x81000)
122
123#define BL_DATA_LIMIT PLAT_HANDOFF_OFFSET
Hadi Asyrafi616da772019-06-27 11:34:03 +0800124
Hadi Asyrafia2edf0e2019-10-22 13:39:14 +0800125#define PLAT_CPUID_RELEASE (BL_DATA_LIMIT - 16)
126#define PLAT_SEC_ENTRY (BL_DATA_LIMIT - 8)
Hadi Asyrafi616da772019-06-27 11:34:03 +0800127
128/*******************************************************************************
129 * Platform specific page table and MMU setup constants
130 ******************************************************************************/
131#define MAX_XLAT_TABLES 8
132#define MAX_MMAP_REGIONS 16
133
134/*******************************************************************************
135 * Declarations and constants to access the mailboxes safely. Each mailbox is
136 * aligned on the biggest cache line size in the platform. This is known only
137 * to the platform as it might have a combination of integrated and external
138 * caches. Such alignment ensures that two maiboxes do not sit on the same cache
139 * line at any cache level. They could belong to different cpus/clusters &
140 * get written while being protected by different locks causing corruption of
141 * a valid mailbox address.
142 ******************************************************************************/
143#define CACHE_WRITEBACK_SHIFT 6
144#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
145
146#define PLAT_GIC_BASE (0xFFFC0000)
147#define PLAT_GICC_BASE (PLAT_GIC_BASE + 0x2000)
148#define PLAT_GICD_BASE (PLAT_GIC_BASE + 0x1000)
149#define PLAT_GICR_BASE 0
150
151/*******************************************************************************
152 * UART related constants
153 ******************************************************************************/
154#define PLAT_UART0_BASE (0xFFC02000)
155#define PLAT_UART1_BASE (0xFFC02100)
156
157#define CRASH_CONSOLE_BASE PLAT_UART0_BASE
158
159#define PLAT_BAUDRATE (115200)
160#define PLAT_UART_CLOCK (100000000)
161
162/*******************************************************************************
163 * System counter frequency related constants
164 ******************************************************************************/
165#define PLAT_SYS_COUNTER_FREQ_IN_TICKS (400000000)
166#define PLAT_SYS_COUNTER_FREQ_IN_MHZ (400)
167
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +0800168#define PLAT_INTEL_SOCFPGA_GICD_BASE PLAT_GICD_BASE
169#define PLAT_INTEL_SOCFPGA_GICC_BASE PLAT_GICC_BASE
Hadi Asyrafi616da772019-06-27 11:34:03 +0800170
171/*
172 * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
173 * terminology. On a GICv2 system or mode, the lists will be merged and treated
174 * as Group 0 interrupts.
175 */
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +0800176#define PLAT_INTEL_SOCFPGA_G1S_IRQ_PROPS(grp) \
177 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_PHY_TIMER, \
178 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_LEVEL), \
179 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_0, \
180 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
181 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_1, \
182 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
183 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_2, \
184 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
185 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_3, \
186 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
187 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_4, \
188 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
189 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_5, \
190 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
191 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_6, \
192 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE), \
193 INTR_PROP_DESC(INTEL_SOCFPGA_IRQ_SEC_SGI_7, \
194 GIC_HIGHEST_SEC_PRIORITY, grp, GIC_INTR_CFG_EDGE)
Hadi Asyrafi616da772019-06-27 11:34:03 +0800195
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +0800196#define PLAT_INTEL_SOCFPGA_G0_IRQ_PROPS(grp)
Hadi Asyrafi616da772019-06-27 11:34:03 +0800197
198#define MAX_IO_HANDLES 4
199#define MAX_IO_DEVICES 4
200#define MAX_IO_BLOCK_DEVICES 2
201
Hadi Asyrafic8a281c2019-10-24 16:13:09 +0800202#ifndef __ASSEMBLER__
203struct socfpga_bl31_params {
204 param_header_t h;
205 image_info_t *bl31_image_info;
206 entry_point_info_t *bl32_ep_info;
207 image_info_t *bl32_image_info;
208 entry_point_info_t *bl33_ep_info;
209 image_info_t *bl33_image_info;
210};
211#endif
212
Hadi Asyrafi616da772019-06-27 11:34:03 +0800213#endif /* PLATFORM_DEF_H */
214