1 /* 2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __PLATFORM_DEF_H__ 8 #define __PLATFORM_DEF_H__ 9 10 #include <arch.h> 11 #include <common_def.h> 12 #include <gic_common.h> 13 #include <interrupt_props.h> 14 #include <tbbr/tbbr_img_def.h> 15 #include "hi3798cv200.h" 16 #include "poplar_layout.h" /* BL memory region sizes, etc */ 17 18 #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" 19 #define PLATFORM_LINKER_ARCH aarch64 20 21 #define PLAT_ARM_CRASH_UART_BASE PL011_UART0_BASE 22 #define PLAT_ARM_CRASH_UART_CLK_IN_HZ PL011_UART0_CLK_IN_HZ 23 #define ARM_CONSOLE_BAUDRATE PL011_BAUDRATE 24 25 /* Generic platform constants */ 26 #define PLATFORM_STACK_SIZE (0x800) 27 28 #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n" 29 #define BOOT_EMMC_NAME "l-loader.bin" 30 31 #define PLATFORM_CACHE_LINE_SIZE (64) 32 #define PLATFORM_CLUSTER_COUNT (1) 33 #define PLATFORM_CORE_COUNT (4) 34 #define PLATFORM_MAX_CPUS_PER_CLUSTER (4) 35 36 /* IO framework user */ 37 #define MAX_IO_DEVICES (4) 38 #define MAX_IO_HANDLES (4) 39 #define MAX_IO_BLOCK_DEVICES (2) 40 41 /* Memory map related constants */ 42 #define DDR_BASE (0x00000000) 43 #define DDR_SIZE (0x40000000) 44 45 #define DEVICE_BASE (0xF0000000) 46 #define DEVICE_SIZE (0x0F000000) 47 48 #define TEE_SEC_MEM_BASE (0x70000000) 49 #define TEE_SEC_MEM_SIZE (0x10000000) 50 51 /* Memory location options for TSP */ 52 #define POPLAR_SRAM_ID 0 53 #define POPLAR_DRAM_ID 1 54 55 /* 56 * DDR for OP-TEE (28MB from 0x02200000 -0x04000000) is divided in several 57 * regions: 58 * - Secure DDR (default is the top 16MB) used by OP-TEE 59 * - Non-secure DDR (4MB) reserved for OP-TEE's future use 60 * - Secure DDR (4MB aligned on 4MB) for OP-TEE's "Secure Data Path" feature 61 * - Non-secure DDR used by OP-TEE (shared memory and padding) (4MB) 62 * - Non-secure DDR (2MB) reserved for OP-TEE's future use 63 */ 64 #define DDR_SEC_SIZE 0x01000000 65 #define DDR_SEC_BASE 0x03000000 66 67 #define BL_MEM_BASE (BL1_RO_BASE) 68 #define BL_MEM_LIMIT (BL31_LIMIT) 69 #define BL_MEM_SIZE (BL_MEM_LIMIT - BL_MEM_BASE) 70 71 /* 72 * BL3-2 specific defines. 73 */ 74 75 /* 76 * The TSP currently executes from TZC secured area of DRAM. 77 */ 78 #define BL32_DRAM_BASE 0x03000000 79 #define BL32_DRAM_LIMIT 0x04000000 80 81 #if (POPLAR_TSP_RAM_LOCATION_ID == POPLAR_DRAM_ID) 82 #define TSP_SEC_MEM_BASE BL32_DRAM_BASE 83 #define TSP_SEC_MEM_SIZE (BL32_DRAM_LIMIT - BL32_DRAM_BASE) 84 #define BL32_BASE BL32_DRAM_BASE 85 #define BL32_LIMIT BL32_DRAM_LIMIT 86 #elif (POPLAR_TSP_RAM_LOCATION_ID == POPLAR_SRAM_ID) 87 #error "SRAM storage of TSP payload is currently unsupported" 88 #else 89 #error "Currently unsupported POPLAR_TSP_LOCATION_ID value" 90 #endif 91 92 /* BL32 is mandatory in AArch32 */ 93 #ifndef AARCH32 94 #ifdef SPD_none 95 #undef BL32_BASE 96 #endif /* SPD_none */ 97 #endif 98 99 #define PLAT_POPLAR_NS_IMAGE_OFFSET 0x37000000 100 101 /* Page table and MMU setup constants */ 102 #define ADDR_SPACE_SIZE (1ull << 32) 103 #define MAX_XLAT_TABLES (4) 104 #define MAX_MMAP_REGIONS (16) 105 106 #define CACHE_WRITEBACK_SHIFT (6) 107 #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) 108 109 /* Power states */ 110 #define PLAT_MAX_PWR_LVL (MPIDR_AFFLVL1) 111 #define PLAT_MAX_OFF_STATE 2 112 #define PLAT_MAX_RET_STATE 1 113 114 /* Interrupt controller */ 115 #define PLAT_ARM_GICD_BASE GICD_BASE 116 #define PLAT_ARM_GICC_BASE GICC_BASE 117 118 #define PLAT_ARM_G1S_IRQ_PROPS(grp) \ 119 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_0, GIC_HIGHEST_SEC_PRIORITY, grp, \ 120 GIC_INTR_CFG_LEVEL), \ 121 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \ 122 GIC_INTR_CFG_LEVEL), \ 123 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \ 124 GIC_INTR_CFG_LEVEL), \ 125 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \ 126 GIC_INTR_CFG_LEVEL), \ 127 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \ 128 GIC_INTR_CFG_LEVEL), \ 129 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \ 130 GIC_INTR_CFG_LEVEL), \ 131 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \ 132 GIC_INTR_CFG_LEVEL), \ 133 INTR_PROP_DESC(HISI_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \ 134 GIC_INTR_CFG_LEVEL), \ 135 INTR_PROP_DESC(HISI_IRQ_SEC_TIMER0, GIC_HIGHEST_SEC_PRIORITY, grp, \ 136 GIC_INTR_CFG_LEVEL), \ 137 INTR_PROP_DESC(HISI_IRQ_SEC_TIMER1, GIC_HIGHEST_SEC_PRIORITY, grp, \ 138 GIC_INTR_CFG_LEVEL), \ 139 INTR_PROP_DESC(HISI_IRQ_SEC_TIMER2, GIC_HIGHEST_SEC_PRIORITY, grp, \ 140 GIC_INTR_CFG_LEVEL), \ 141 INTR_PROP_DESC(HISI_IRQ_SEC_TIMER3, GIC_HIGHEST_SEC_PRIORITY, grp, \ 142 GIC_INTR_CFG_LEVEL), \ 143 INTR_PROP_DESC(HISI_IRQ_SEC_AXI, GIC_HIGHEST_SEC_PRIORITY, grp, \ 144 GIC_INTR_CFG_LEVEL) 145 146 #define PLAT_ARM_G0_IRQ_PROPS(grp) 147 148 #endif /* __PLATFORM_DEF_H__ */ 149