1 /* 2 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved. 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_DEF_H__ 32 #define __PLATFORM_DEF_H__ 33 34 #include <arch.h> 35 #include <common_def.h> 36 #include <rk3368_def.h> 37 38 #define DEBUG_XLAT_TABLE 0 39 40 /******************************************************************************* 41 * Platform binary types for linking 42 ******************************************************************************/ 43 #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" 44 #define PLATFORM_LINKER_ARCH aarch64 45 46 /******************************************************************************* 47 * Generic platform constants 48 ******************************************************************************/ 49 50 /* Size of cacheable stacks */ 51 #if DEBUG_XLAT_TABLE 52 #define PLATFORM_STACK_SIZE 0x800 53 #elif defined(IMAGE_BL1) 54 #define PLATFORM_STACK_SIZE 0x440 55 #elif defined(IMAGE_BL2) 56 #define PLATFORM_STACK_SIZE 0x400 57 #elif defined(IMAGE_BL31) 58 #define PLATFORM_STACK_SIZE 0x800 59 #elif defined(IMAGE_BL32) 60 #define PLATFORM_STACK_SIZE 0x440 61 #endif 62 63 #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n" 64 65 #define PLATFORM_MAX_AFFLVL MPIDR_AFFLVL2 66 #define PLATFORM_SYSTEM_COUNT 1 67 #define PLATFORM_CLUSTER_COUNT 2 68 #define PLATFORM_CLUSTER0_CORE_COUNT 4 69 #define PLATFORM_CLUSTER1_CORE_COUNT 4 70 #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER1_CORE_COUNT + \ 71 PLATFORM_CLUSTER0_CORE_COUNT) 72 #define PLATFORM_MAX_CPUS_PER_CLUSTER 4 73 #define PLATFORM_NUM_AFFS (PLATFORM_SYSTEM_COUNT + \ 74 PLATFORM_CLUSTER_COUNT + \ 75 PLATFORM_CORE_COUNT) 76 77 #define PLAT_RK_CLST_TO_CPUID_SHIFT 8 78 79 #define PLAT_MAX_PWR_LVL MPIDR_AFFLVL2 80 81 /* 82 * This macro defines the deepest retention state possible. A higher state 83 * id will represent an invalid or a power down state. 84 */ 85 #define PLAT_MAX_RET_STATE 1 86 87 /* 88 * This macro defines the deepest power down states possible. Any state ID 89 * higher than this is invalid. 90 */ 91 #define PLAT_MAX_OFF_STATE 2 92 93 /******************************************************************************* 94 * Platform memory map related constants 95 ******************************************************************************/ 96 /* TF txet, ro, rw, Size: 512KB */ 97 #define TZRAM_BASE (0x0) 98 #define TZRAM_SIZE (0x80000) 99 100 /******************************************************************************* 101 * BL31 specific defines. 102 ******************************************************************************/ 103 /* 104 * Put BL3-1 at the top of the Trusted RAM 105 */ 106 #define BL31_BASE (TZRAM_BASE + 0x10000) 107 #define BL31_LIMIT (TZRAM_BASE + TZRAM_SIZE) 108 109 /******************************************************************************* 110 * Platform specific page table and MMU setup constants 111 ******************************************************************************/ 112 #define ADDR_SPACE_SIZE (1ull << 32) 113 #define MAX_XLAT_TABLES 8 114 #define MAX_MMAP_REGIONS 16 115 116 /******************************************************************************* 117 * Declarations and constants to access the mailboxes safely. Each mailbox is 118 * aligned on the biggest cache line size in the platform. This is known only 119 * to the platform as it might have a combination of integrated and external 120 * caches. Such alignment ensures that two maiboxes do not sit on the same cache 121 * line at any cache level. They could belong to different cpus/clusters & 122 * get written while being protected by different locks causing corruption of 123 * a valid mailbox address. 124 ******************************************************************************/ 125 #define CACHE_WRITEBACK_SHIFT 6 126 #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) 127 128 /* 129 * Define GICD and GICC and GICR base 130 */ 131 #define PLAT_RK_GICD_BASE RK3368_GICD_BASE 132 #define PLAT_RK_GICC_BASE RK3368_GICC_BASE 133 134 /* 135 * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3 136 * terminology. On a GICv2 system or mode, the lists will be merged and treated 137 * as Group 0 interrupts. 138 */ 139 #define PLAT_RK_G1S_IRQS RK_G1S_IRQS 140 141 #define PLAT_RK_UART_BASE RK3368_UART2_BASE 142 #define PLAT_RK_UART_CLOCK RK3368_UART_CLOCK 143 #define PLAT_RK_UART_BAUDRATE RK3368_BAUDRATE 144 145 #define PLAT_RK_CCI_BASE CCI400_BASE 146 147 #define PLAT_RK_PRIMARY_CPU 0x0 148 149 #endif /* __PLATFORM_DEF_H__ */ 150