Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
| 31 | #ifndef __PLATFORM_H__ |
| 32 | #define __PLATFORM_H__ |
| 33 | |
| 34 | #include <arch.h> |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 35 | #include <bl_common.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 36 | |
| 37 | |
| 38 | /******************************************************************************* |
| 39 | * Platform binary types for linking |
| 40 | ******************************************************************************/ |
| 41 | #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" |
| 42 | #define PLATFORM_LINKER_ARCH aarch64 |
| 43 | |
| 44 | /******************************************************************************* |
| 45 | * Generic platform constants |
| 46 | ******************************************************************************/ |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 47 | |
| 48 | /* Size of cacheable stacks */ |
| 49 | #define PLATFORM_STACK_SIZE 0x800 |
| 50 | |
| 51 | /* Size of coherent stacks for debug and release builds */ |
| 52 | #if DEBUG |
| 53 | #define PCPU_DV_MEM_STACK_SIZE 0x400 |
| 54 | #else |
| 55 | #define PCPU_DV_MEM_STACK_SIZE 0x300 |
| 56 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 57 | |
| 58 | #define FIRMWARE_WELCOME_STR "Booting trusted firmware boot loader stage 1\n\r" |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 59 | |
| 60 | /* Trusted Boot Firmware BL2 */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 61 | #define BL2_IMAGE_NAME "bl2.bin" |
Achin Gupta | e4d084e | 2014-02-19 17:18:23 +0000 | [diff] [blame] | 62 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 63 | /* EL3 Runtime Firmware BL31 */ |
Achin Gupta | e4d084e | 2014-02-19 17:18:23 +0000 | [diff] [blame] | 64 | #define BL31_IMAGE_NAME "bl31.bin" |
| 65 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 66 | /* Secure Payload BL32 (Trusted OS) */ |
Achin Gupta | e4d084e | 2014-02-19 17:18:23 +0000 | [diff] [blame] | 67 | #define BL32_IMAGE_NAME "bl32.bin" |
| 68 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 69 | /* Non-Trusted Firmware BL33 and its load address */ |
Achin Gupta | e4d084e | 2014-02-19 17:18:23 +0000 | [diff] [blame] | 70 | #define BL33_IMAGE_NAME "bl33.bin" /* e.g. UEFI */ |
| 71 | #define NS_IMAGE_OFFSET (DRAM_BASE + 0x8000000) /* DRAM + 128MB */ |
| 72 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 73 | /* Firmware Image Package */ |
| 74 | #define FIP_IMAGE_NAME "fip.bin" |
| 75 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 76 | #define PLATFORM_CACHE_LINE_SIZE 64 |
| 77 | #define PLATFORM_CLUSTER_COUNT 2ull |
| 78 | #define PLATFORM_CLUSTER0_CORE_COUNT 4 |
| 79 | #define PLATFORM_CLUSTER1_CORE_COUNT 4 |
Ian Spray | 8468739 | 2014-01-02 16:57:12 +0000 | [diff] [blame] | 80 | #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER1_CORE_COUNT + \ |
| 81 | PLATFORM_CLUSTER0_CORE_COUNT) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 82 | #define PLATFORM_MAX_CPUS_PER_CLUSTER 4 |
| 83 | #define PRIMARY_CPU 0x0 |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 84 | #define MAX_IO_DEVICES 3 |
James Morrissey | f2f9bb5 | 2014-02-10 16:18:59 +0000 | [diff] [blame] | 85 | #define MAX_IO_HANDLES 4 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 86 | |
| 87 | /* Constants for accessing platform configuration */ |
| 88 | #define CONFIG_GICD_ADDR 0 |
| 89 | #define CONFIG_GICC_ADDR 1 |
| 90 | #define CONFIG_GICH_ADDR 2 |
| 91 | #define CONFIG_GICV_ADDR 3 |
| 92 | #define CONFIG_MAX_AFF0 4 |
| 93 | #define CONFIG_MAX_AFF1 5 |
| 94 | /* Indicate whether the CPUECTLR SMP bit should be enabled. */ |
| 95 | #define CONFIG_CPU_SETUP 6 |
| 96 | #define CONFIG_BASE_MMAP 7 |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 97 | /* Indicates whether CCI should be enabled on the platform. */ |
| 98 | #define CONFIG_HAS_CCI 8 |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 99 | #define CONFIG_HAS_TZC 9 |
| 100 | #define CONFIG_LIMIT 10 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 101 | |
| 102 | /******************************************************************************* |
| 103 | * Platform memory map related constants |
| 104 | ******************************************************************************/ |
| 105 | #define TZROM_BASE 0x00000000 |
| 106 | #define TZROM_SIZE 0x04000000 |
| 107 | |
| 108 | #define TZRAM_BASE 0x04000000 |
| 109 | #define TZRAM_SIZE 0x40000 |
| 110 | |
| 111 | #define FLASH0_BASE 0x08000000 |
| 112 | #define FLASH0_SIZE TZROM_SIZE |
| 113 | |
| 114 | #define FLASH1_BASE 0x0c000000 |
| 115 | #define FLASH1_SIZE 0x04000000 |
| 116 | |
| 117 | #define PSRAM_BASE 0x14000000 |
| 118 | #define PSRAM_SIZE 0x04000000 |
| 119 | |
| 120 | #define VRAM_BASE 0x18000000 |
| 121 | #define VRAM_SIZE 0x02000000 |
| 122 | |
| 123 | /* Aggregate of all devices in the first GB */ |
| 124 | #define DEVICE0_BASE 0x1a000000 |
| 125 | #define DEVICE0_SIZE 0x12200000 |
| 126 | |
| 127 | #define DEVICE1_BASE 0x2f000000 |
| 128 | #define DEVICE1_SIZE 0x200000 |
| 129 | |
| 130 | #define NSRAM_BASE 0x2e000000 |
| 131 | #define NSRAM_SIZE 0x10000 |
| 132 | |
| 133 | /* Location of trusted dram on the base fvp */ |
| 134 | #define TZDRAM_BASE 0x06000000 |
| 135 | #define TZDRAM_SIZE 0x02000000 |
| 136 | #define MBOX_OFF 0x1000 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 137 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 138 | /* Base address where parameters to BL31 are stored */ |
| 139 | #define PARAMS_BASE TZDRAM_BASE |
| 140 | |
| 141 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 142 | #define DRAM_BASE 0x80000000ull |
| 143 | #define DRAM_SIZE 0x80000000ull |
| 144 | |
| 145 | #define PCIE_EXP_BASE 0x40000000 |
| 146 | #define TZRNG_BASE 0x7fe60000 |
| 147 | #define TZNVCTR_BASE 0x7fe70000 |
| 148 | #define TZROOTKEY_BASE 0x7fe80000 |
| 149 | |
| 150 | /* Memory mapped Generic timer interfaces */ |
| 151 | #define SYS_CNTCTL_BASE 0x2a430000 |
| 152 | #define SYS_CNTREAD_BASE 0x2a800000 |
| 153 | #define SYS_TIMCTL_BASE 0x2a810000 |
| 154 | |
| 155 | /* Counter timer module offsets */ |
| 156 | #define CNTNSAR 0x4 |
| 157 | #define CNTNSAR_NS_SHIFT(x) x |
| 158 | |
| 159 | #define CNTACR_BASE(x) (0x40 + (x << 2)) |
| 160 | #define CNTACR_RPCT_SHIFT 0x0 |
| 161 | #define CNTACR_RVCT_SHIFT 0x1 |
| 162 | #define CNTACR_RFRQ_SHIFT 0x2 |
| 163 | #define CNTACR_RVOFF_SHIFT 0x3 |
| 164 | #define CNTACR_RWVT_SHIFT 0x4 |
| 165 | #define CNTACR_RWPT_SHIFT 0x5 |
| 166 | |
| 167 | /* V2M motherboard system registers & offsets */ |
| 168 | #define VE_SYSREGS_BASE 0x1c010000 |
| 169 | #define V2M_SYS_ID 0x0 |
| 170 | #define V2M_SYS_LED 0x8 |
| 171 | #define V2M_SYS_CFGDATA 0xa0 |
| 172 | #define V2M_SYS_CFGCTRL 0xa4 |
| 173 | |
| 174 | /* |
| 175 | * V2M sysled bit definitions. The values written to this |
| 176 | * register are defined in arch.h & runtime_svc.h. Only |
| 177 | * used by the primary cpu to diagnose any cold boot issues. |
| 178 | * |
| 179 | * SYS_LED[0] - Security state (S=0/NS=1) |
| 180 | * SYS_LED[2:1] - Exception Level (EL3-EL0) |
| 181 | * SYS_LED[7:3] - Exception Class (Sync/Async & origin) |
| 182 | * |
| 183 | */ |
| 184 | #define SYS_LED_SS_SHIFT 0x0 |
| 185 | #define SYS_LED_EL_SHIFT 0x1 |
| 186 | #define SYS_LED_EC_SHIFT 0x3 |
| 187 | |
| 188 | #define SYS_LED_SS_MASK 0x1 |
| 189 | #define SYS_LED_EL_MASK 0x3 |
| 190 | #define SYS_LED_EC_MASK 0x1f |
| 191 | |
| 192 | /* V2M sysid register bits */ |
| 193 | #define SYS_ID_REV_SHIFT 27 |
| 194 | #define SYS_ID_HBI_SHIFT 16 |
| 195 | #define SYS_ID_BLD_SHIFT 12 |
| 196 | #define SYS_ID_ARCH_SHIFT 8 |
| 197 | #define SYS_ID_FPGA_SHIFT 0 |
| 198 | |
| 199 | #define SYS_ID_REV_MASK 0xf |
| 200 | #define SYS_ID_HBI_MASK 0xfff |
| 201 | #define SYS_ID_BLD_MASK 0xf |
| 202 | #define SYS_ID_ARCH_MASK 0xf |
| 203 | #define SYS_ID_FPGA_MASK 0xff |
| 204 | |
| 205 | #define SYS_ID_BLD_LENGTH 4 |
| 206 | |
| 207 | #define REV_FVP 0x0 |
| 208 | #define HBI_FVP_BASE 0x020 |
| 209 | #define HBI_FOUNDATION 0x010 |
| 210 | |
| 211 | #define BLD_GIC_VE_MMAP 0x0 |
| 212 | #define BLD_GIC_A53A57_MMAP 0x1 |
| 213 | |
| 214 | #define ARCH_MODEL 0x1 |
| 215 | |
| 216 | /* FVP Power controller base address*/ |
| 217 | #define PWRC_BASE 0x1c100000 |
| 218 | |
| 219 | /******************************************************************************* |
| 220 | * Platform specific per affinity states. Distinction between off and suspend |
| 221 | * is made to allow reporting of a suspended cpu as still being on e.g. in the |
| 222 | * affinity_info psci call. |
| 223 | ******************************************************************************/ |
| 224 | #define PLATFORM_MAX_AFF0 4 |
| 225 | #define PLATFORM_MAX_AFF1 2 |
| 226 | #define PLAT_AFF_UNK 0xff |
| 227 | |
| 228 | #define PLAT_AFF0_OFF 0x0 |
| 229 | #define PLAT_AFF0_ONPENDING 0x1 |
| 230 | #define PLAT_AFF0_SUSPEND 0x2 |
| 231 | #define PLAT_AFF0_ON 0x3 |
| 232 | |
| 233 | #define PLAT_AFF1_OFF 0x0 |
| 234 | #define PLAT_AFF1_ONPENDING 0x1 |
| 235 | #define PLAT_AFF1_SUSPEND 0x2 |
| 236 | #define PLAT_AFF1_ON 0x3 |
| 237 | |
| 238 | /******************************************************************************* |
| 239 | * BL2 specific defines. |
| 240 | ******************************************************************************/ |
Jeenu Viswambharan | 74cbb83 | 2014-02-17 17:26:51 +0000 | [diff] [blame] | 241 | #define BL2_BASE 0x0402D000 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 242 | |
| 243 | /******************************************************************************* |
| 244 | * BL31 specific defines. |
| 245 | ******************************************************************************/ |
Jeenu Viswambharan | 74cbb83 | 2014-02-17 17:26:51 +0000 | [diff] [blame] | 246 | #define BL31_BASE 0x0400C000 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 247 | |
| 248 | /******************************************************************************* |
Achin Gupta | a3050ed | 2014-02-19 17:52:35 +0000 | [diff] [blame] | 249 | * BL32 specific defines. |
| 250 | ******************************************************************************/ |
| 251 | #define BL32_BASE (TZDRAM_BASE + 0x2000) |
| 252 | |
| 253 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 254 | * Platform specific page table and MMU setup constants |
| 255 | ******************************************************************************/ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 256 | #define ADDR_SPACE_SIZE (1ull << 32) |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 257 | #define MAX_XLAT_TABLES 3 |
| 258 | #define MAX_MMAP_REGIONS 16 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 259 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 260 | |
| 261 | /******************************************************************************* |
| 262 | * CCI-400 related constants |
| 263 | ******************************************************************************/ |
| 264 | #define CCI400_BASE 0x2c090000 |
| 265 | #define CCI400_SL_IFACE_CLUSTER0 3 |
| 266 | #define CCI400_SL_IFACE_CLUSTER1 4 |
| 267 | #define CCI400_SL_IFACE_INDEX(mpidr) (mpidr & MPIDR_CLUSTER_MASK ? \ |
| 268 | CCI400_SL_IFACE_CLUSTER1 : \ |
| 269 | CCI400_SL_IFACE_CLUSTER0) |
| 270 | |
| 271 | /******************************************************************************* |
| 272 | * GIC-400 & interrupt handling related constants |
| 273 | ******************************************************************************/ |
| 274 | /* VE compatible GIC memory map */ |
| 275 | #define VE_GICD_BASE 0x2c001000 |
| 276 | #define VE_GICC_BASE 0x2c002000 |
| 277 | #define VE_GICH_BASE 0x2c004000 |
| 278 | #define VE_GICV_BASE 0x2c006000 |
| 279 | |
| 280 | /* Base FVP compatible GIC memory map */ |
| 281 | #define BASE_GICD_BASE 0x2f000000 |
| 282 | #define BASE_GICR_BASE 0x2f100000 |
| 283 | #define BASE_GICC_BASE 0x2c000000 |
| 284 | #define BASE_GICH_BASE 0x2c010000 |
| 285 | #define BASE_GICV_BASE 0x2c02f000 |
| 286 | |
| 287 | #define IRQ_TZ_WDOG 56 |
| 288 | #define IRQ_SEC_PHY_TIMER 29 |
| 289 | #define IRQ_SEC_SGI_0 8 |
| 290 | #define IRQ_SEC_SGI_1 9 |
| 291 | #define IRQ_SEC_SGI_2 10 |
| 292 | #define IRQ_SEC_SGI_3 11 |
| 293 | #define IRQ_SEC_SGI_4 12 |
| 294 | #define IRQ_SEC_SGI_5 13 |
| 295 | #define IRQ_SEC_SGI_6 14 |
| 296 | #define IRQ_SEC_SGI_7 15 |
| 297 | #define IRQ_SEC_SGI_8 16 |
| 298 | |
| 299 | /******************************************************************************* |
| 300 | * PL011 related constants |
| 301 | ******************************************************************************/ |
Achin Gupta | 8aa0cd4 | 2014-02-09 13:47:08 +0000 | [diff] [blame] | 302 | #define PL011_UART0_BASE 0x1c090000 |
| 303 | #define PL011_UART1_BASE 0x1c0a0000 |
| 304 | #define PL011_UART2_BASE 0x1c0b0000 |
| 305 | #define PL011_UART3_BASE 0x1c0c0000 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 306 | |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 307 | |
| 308 | /******************************************************************************* |
| 309 | * TrustZone address space controller related constants |
| 310 | ******************************************************************************/ |
| 311 | #define TZC400_BASE 0x2a4a0000 |
| 312 | |
| 313 | /* |
| 314 | * The NSAIDs for this platform as used to program the TZC400. |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 315 | */ |
| 316 | |
| 317 | /* The FVP has 4 bits of NSAIDs. Used with TZC FAIL_ID (ACE Lite ID width) */ |
| 318 | #define FVP_AID_WIDTH 4 |
Andrew Thoelke | fe3374b | 2014-05-09 15:36:13 +0100 | [diff] [blame] | 319 | |
| 320 | /* NSAIDs used by devices in TZC filter 0 on FVP */ |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 321 | #define FVP_NSAID_DEFAULT 0 |
Andrew Thoelke | fe3374b | 2014-05-09 15:36:13 +0100 | [diff] [blame] | 322 | #define FVP_NSAID_PCI 1 |
| 323 | #define FVP_NSAID_VIRTIO 8 /* from FVP v5.6 onwards */ |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 324 | #define FVP_NSAID_AP 9 /* Application Processors */ |
Andrew Thoelke | fe3374b | 2014-05-09 15:36:13 +0100 | [diff] [blame] | 325 | #define FVP_NSAID_VIRTIO_OLD 15 /* until FVP v5.5 */ |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 326 | |
Andrew Thoelke | fe3374b | 2014-05-09 15:36:13 +0100 | [diff] [blame] | 327 | /* NSAIDs used by devices in TZC filter 2 on FVP */ |
| 328 | #define FVP_NSAID_HDLCD0 2 |
| 329 | #define FVP_NSAID_CLCD 7 |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 330 | |
| 331 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 332 | /******************************************************************************* |
| 333 | * Declarations and constants to access the mailboxes safely. Each mailbox is |
| 334 | * aligned on the biggest cache line size in the platform. This is known only |
| 335 | * to the platform as it might have a combination of integrated and external |
| 336 | * caches. Such alignment ensures that two maiboxes do not sit on the same cache |
| 337 | * line at any cache level. They could belong to different cpus/clusters & |
| 338 | * get written while being protected by different locks causing corruption of |
| 339 | * a valid mailbox address. |
| 340 | ******************************************************************************/ |
| 341 | #define CACHE_WRITEBACK_SHIFT 6 |
| 342 | #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) |
| 343 | |
| 344 | #ifndef __ASSEMBLY__ |
| 345 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 346 | #include <stdint.h> |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 347 | #include <bl_common.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 348 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 349 | typedef volatile struct mailbox { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 350 | unsigned long value |
| 351 | __attribute__((__aligned__(CACHE_WRITEBACK_GRANULE))); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 352 | } mailbox_t; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 353 | |
| 354 | /******************************************************************************* |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 355 | * Forward declarations |
| 356 | ******************************************************************************/ |
| 357 | struct plat_pm_ops; |
| 358 | struct meminfo; |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 359 | struct bl31_params; |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 360 | struct image_info; |
| 361 | struct entry_point_info; |
| 362 | |
| 363 | |
| 364 | /******************************************************************************* |
| 365 | * This structure represents the superset of information that is passed to |
| 366 | * BL31 e.g. while passing control to it from BL2 which is bl31_params |
Vikram Kanigiri | d8c9d26 | 2014-05-16 18:48:12 +0100 | [diff] [blame] | 367 | * and another platform specific params |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 368 | ******************************************************************************/ |
| 369 | typedef struct bl2_to_bl31_params_mem { |
| 370 | struct bl31_params bl31_params; |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 371 | struct image_info bl31_image_info; |
| 372 | struct image_info bl32_image_info; |
| 373 | struct image_info bl33_image_info; |
| 374 | struct entry_point_info bl33_ep_info; |
| 375 | struct entry_point_info bl32_ep_info; |
| 376 | struct entry_point_info bl31_ep_info; |
| 377 | } bl2_to_bl31_params_mem_t; |
| 378 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 379 | |
| 380 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 381 | * Function and variable prototypes |
| 382 | ******************************************************************************/ |
| 383 | extern unsigned long *bl1_normal_ram_base; |
| 384 | extern unsigned long *bl1_normal_ram_len; |
| 385 | extern unsigned long *bl1_normal_ram_limit; |
| 386 | extern unsigned long *bl1_normal_ram_zi_base; |
| 387 | extern unsigned long *bl1_normal_ram_zi_len; |
| 388 | |
| 389 | extern unsigned long *bl1_coherent_ram_base; |
| 390 | extern unsigned long *bl1_coherent_ram_len; |
| 391 | extern unsigned long *bl1_coherent_ram_limit; |
| 392 | extern unsigned long *bl1_coherent_ram_zi_base; |
| 393 | extern unsigned long *bl1_coherent_ram_zi_len; |
| 394 | extern unsigned long warm_boot_entrypoint; |
| 395 | |
| 396 | extern void bl1_plat_arch_setup(void); |
| 397 | extern void bl2_plat_arch_setup(void); |
| 398 | extern void bl31_plat_arch_setup(void); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 399 | extern int platform_setup_pm(const struct plat_pm_ops **); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 400 | extern unsigned int platform_get_core_pos(unsigned long mpidr); |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame] | 401 | extern void enable_mmu_el1(void); |
| 402 | extern void enable_mmu_el3(void); |
Vikram Kanigiri | d8c9d26 | 2014-05-16 18:48:12 +0100 | [diff] [blame] | 403 | extern void configure_mmu_el1(unsigned long total_base, |
| 404 | unsigned long total_size, |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame] | 405 | unsigned long ro_start, |
| 406 | unsigned long ro_limit, |
| 407 | unsigned long coh_start, |
| 408 | unsigned long coh_limit); |
Vikram Kanigiri | d8c9d26 | 2014-05-16 18:48:12 +0100 | [diff] [blame] | 409 | extern void configure_mmu_el3(unsigned long total_base, |
| 410 | unsigned long total_size, |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame] | 411 | unsigned long ro_start, |
| 412 | unsigned long ro_limit, |
| 413 | unsigned long coh_start, |
| 414 | unsigned long coh_limit); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 415 | extern unsigned long platform_get_cfgvar(unsigned int); |
| 416 | extern int platform_config_setup(void); |
| 417 | extern void plat_report_exception(unsigned long); |
| 418 | extern unsigned long plat_get_ns_image_entrypoint(void); |
Achin Gupta | c8afc78 | 2013-11-25 18:45:02 +0000 | [diff] [blame] | 419 | extern unsigned long platform_get_stack(unsigned long mpidr); |
Sandrine Bailleux | 3fa9847 | 2014-03-31 11:25:18 +0100 | [diff] [blame] | 420 | extern uint64_t plat_get_syscnt_freq(void); |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 421 | #if RESET_TO_BL31 |
| 422 | extern void plat_get_entry_point_info(unsigned long target_security, |
| 423 | struct entry_point_info *target_entry_info); |
| 424 | #endif |
| 425 | |
| 426 | extern void fvp_cci_setup(void); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 427 | |
Ian Spray | 8468739 | 2014-01-02 16:57:12 +0000 | [diff] [blame] | 428 | /* Declarations for fvp_gic.c */ |
| 429 | extern void gic_cpuif_deactivate(unsigned int); |
| 430 | extern void gic_cpuif_setup(unsigned int); |
| 431 | extern void gic_pcpu_distif_setup(unsigned int); |
| 432 | extern void gic_setup(void); |
| 433 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 434 | /* Declarations for fvp_topology.c */ |
| 435 | extern int plat_setup_topology(void); |
| 436 | extern int plat_get_max_afflvl(void); |
| 437 | extern unsigned int plat_get_aff_count(unsigned int, unsigned long); |
| 438 | extern unsigned int plat_get_aff_state(unsigned int, unsigned long); |
| 439 | |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 440 | /* Declarations for plat_io_storage.c */ |
| 441 | extern void io_setup(void); |
| 442 | extern int plat_get_image_source(const char *image_name, |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 443 | uintptr_t *dev_handle, uintptr_t *image_spec); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 444 | |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 445 | /* Declarations for plat_security.c */ |
| 446 | extern void plat_security_setup(void); |
| 447 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 448 | /* |
| 449 | * Before calling this function BL2 is loaded in memory and its entrypoint |
| 450 | * is set by load_image. This is a placeholder for the platform to change |
| 451 | * the entrypoint of BL2 and set SPSR and security state. |
| 452 | * On FVP we are only setting the security state, entrypoint |
| 453 | */ |
| 454 | extern void bl1_plat_set_bl2_ep_info(struct image_info *image, |
| 455 | struct entry_point_info *ep); |
| 456 | |
| 457 | /* |
| 458 | * Before calling this function BL31 is loaded in memory and its entrypoint |
| 459 | * is set by load_image. This is a placeholder for the platform to change |
| 460 | * the entrypoint of BL31 and set SPSR and security state. |
| 461 | * On FVP we are only setting the security state, entrypoint |
| 462 | */ |
| 463 | extern void bl2_plat_set_bl31_ep_info(struct image_info *image, |
| 464 | struct entry_point_info *ep); |
| 465 | |
| 466 | /* |
| 467 | * Before calling this function BL32 is loaded in memory and its entrypoint |
| 468 | * is set by load_image. This is a placeholder for the platform to change |
| 469 | * the entrypoint of BL32 and set SPSR and security state. |
| 470 | * On FVP we are only setting the security state, entrypoint |
| 471 | */ |
| 472 | extern void bl2_plat_set_bl32_ep_info(struct image_info *image, |
| 473 | struct entry_point_info *ep); |
| 474 | |
| 475 | /* |
| 476 | * Before calling this function BL33 is loaded in memory and its entrypoint |
| 477 | * is set by load_image. This is a placeholder for the platform to change |
| 478 | * the entrypoint of BL33 and set SPSR and security state. |
| 479 | * On FVP we are only setting the security state, entrypoint |
| 480 | */ |
| 481 | extern void bl2_plat_set_bl33_ep_info(struct image_info *image, |
| 482 | struct entry_point_info *ep); |
| 483 | |
Vikram Kanigiri | d8c9d26 | 2014-05-16 18:48:12 +0100 | [diff] [blame] | 484 | /* Gets the memory layout for BL32 */ |
| 485 | extern void bl2_plat_get_bl32_meminfo(struct meminfo *mem_info); |
| 486 | |
| 487 | /* Gets the memory layout for BL33 */ |
| 488 | extern void bl2_plat_get_bl33_meminfo(struct meminfo *mem_info); |
| 489 | |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 490 | /* Sets the entrypoint for BL32 */ |
| 491 | extern void fvp_set_bl32_ep_info(struct entry_point_info *bl32_ep_info); |
| 492 | |
| 493 | /* Sets the entrypoint for BL33 */ |
| 494 | extern void fvp_set_bl33_ep_info(struct entry_point_info *bl33_ep_info); |
| 495 | |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 496 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 497 | #endif /*__ASSEMBLY__*/ |
| 498 | |
| 499 | #endif /* __PLATFORM_H__ */ |