1 /* 2 * Copyright (c) 2014-2021, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef TZC400_H 8 #define TZC400_H 9 10 #include <drivers/arm/tzc_common.h> 11 #include <lib/utils_def.h> 12 13 #define BUILD_CONFIG_OFF U(0x000) 14 #define GATE_KEEPER_OFF U(0x008) 15 #define SPECULATION_CTRL_OFF U(0x00c) 16 #define INT_STATUS U(0x010) 17 #define INT_CLEAR U(0x014) 18 19 #define FAIL_ADDRESS_LOW_OFF U(0x020) 20 #define FAIL_ADDRESS_HIGH_OFF U(0x024) 21 #define FAIL_CONTROL_OFF U(0x028) 22 #define FAIL_ID U(0x02c) 23 24 /* ID registers not common across different varieties of TZC */ 25 #define PID5 U(0xFD4) 26 #define PID6 U(0xFD8) 27 #define PID7 U(0xFDC) 28 29 #define BUILD_CONFIG_NF_SHIFT 24 30 #define BUILD_CONFIG_NF_MASK U(0x3) 31 #define BUILD_CONFIG_AW_SHIFT 8 32 #define BUILD_CONFIG_AW_MASK U(0x3f) 33 #define BUILD_CONFIG_NR_SHIFT 0 34 #define BUILD_CONFIG_NR_MASK U(0x1f) 35 36 /* 37 * Number of gate keepers is implementation defined. But we know the max for 38 * this device is 4. Get implementation details from BUILD_CONFIG. 39 */ 40 #define GATE_KEEPER_OS_SHIFT 16 41 #define GATE_KEEPER_OS_MASK U(0xf) 42 #define GATE_KEEPER_OR_SHIFT 0 43 #define GATE_KEEPER_OR_MASK U(0xf) 44 #define GATE_KEEPER_FILTER_MASK U(0x1) 45 46 /* Speculation is enabled by default. */ 47 #define SPECULATION_CTRL_WRITE_DISABLE BIT_32(1) 48 #define SPECULATION_CTRL_READ_DISABLE BIT_32(0) 49 50 /* Max number of filters allowed is 4. */ 51 #define INT_STATUS_OVERLAP_SHIFT 16 52 #define INT_STATUS_OVERLAP_MASK U(0xf) 53 #define INT_STATUS_OVERRUN_SHIFT 8 54 #define INT_STATUS_OVERRUN_MASK U(0xf) 55 #define INT_STATUS_STATUS_SHIFT 0 56 #define INT_STATUS_STATUS_MASK U(0xf) 57 58 #define INT_CLEAR_CLEAR_SHIFT 0 59 #define INT_CLEAR_CLEAR_MASK U(0xf) 60 61 #define FAIL_CONTROL_DIR_SHIFT 24 62 #define FAIL_CONTROL_DIR_READ U(0) 63 #define FAIL_CONTROL_DIR_WRITE U(1) 64 #define FAIL_CONTROL_NS_SHIFT 21 65 #define FAIL_CONTROL_NS_SECURE U(0) 66 #define FAIL_CONTROL_NS_NONSECURE U(1) 67 #define FAIL_CONTROL_PRIV_SHIFT 20 68 #define FAIL_CONTROL_PRIV_UNPRIV U(0) 69 #define FAIL_CONTROL_PRIV_PRIV U(1) 70 71 /* 72 * FAIL_ID_ID_MASK depends on AID_WIDTH which is platform specific. 73 * Platform should provide the value on initialisation. 74 */ 75 #define FAIL_ID_VNET_SHIFT 24 76 #define FAIL_ID_VNET_MASK U(0xf) 77 #define FAIL_ID_ID_SHIFT 0 78 79 #define TZC_400_PERIPHERAL_ID U(0x460) 80 81 /* Filter enable bits in a TZC */ 82 #define TZC_400_REGION_ATTR_F_EN_MASK U(0xf) 83 #define TZC_400_REGION_ATTR_FILTER_BIT(x) (U(1) << (x)) 84 #define TZC_400_REGION_ATTR_FILTER_BIT_ALL TZC_400_REGION_ATTR_F_EN_MASK 85 86 /* 87 * All TZC region configuration registers are placed one after another. It 88 * depicts size of block of registers for programming each region. 89 */ 90 #define TZC_400_REGION_SIZE U(0x20) 91 #define TZC_400_ACTION_OFF U(0x4) 92 93 #ifndef __ASSEMBLER__ 94 95 #include <cdefs.h> 96 #include <stdint.h> 97 98 /******************************************************************************* 99 * Function & variable prototypes 100 ******************************************************************************/ 101 void tzc400_init(uintptr_t base); 102 void tzc400_configure_region0(unsigned int sec_attr, 103 unsigned int ns_device_access); 104 void tzc400_configure_region(unsigned int filters, 105 unsigned int region, 106 unsigned long long region_base, 107 unsigned long long region_top, 108 unsigned int sec_attr, 109 unsigned int nsaid_permissions); 110 void tzc400_set_action(unsigned int action); 111 void tzc400_enable_filters(void); 112 void tzc400_disable_filters(void); 113 114 static inline void tzc_init(uintptr_t base) 115 { 116 tzc400_init(base); 117 } 118 119 static inline void tzc_configure_region0( 120 unsigned int sec_attr, 121 unsigned int ns_device_access) 122 { 123 tzc400_configure_region0(sec_attr, ns_device_access); 124 } 125 126 static inline void tzc_configure_region( 127 unsigned int filters, 128 unsigned int region, 129 unsigned long long region_base, 130 unsigned long long region_top, 131 unsigned int sec_attr, 132 unsigned int ns_device_access) 133 { 134 tzc400_configure_region(filters, region, region_base, 135 region_top, sec_attr, ns_device_access); 136 } 137 138 static inline void tzc_set_action(unsigned int action) 139 { 140 tzc400_set_action(action); 141 } 142 143 144 static inline void tzc_enable_filters(void) 145 { 146 tzc400_enable_filters(); 147 } 148 149 static inline void tzc_disable_filters(void) 150 { 151 tzc400_disable_filters(); 152 } 153 154 #endif /* __ASSEMBLER__ */ 155 156 #endif /* TZC400_H */ 157