cpufunc.h | 154 #define AARCH64_ADDRTOP_TAG __BIT(55) /* ECR_EL1.TBI[01]=1 */ 155 #define AARCH64_ADDRTOP_MSB __BIT(63) /* ECR_EL1.TBI[01]=0 */ 156 #define AARCH64_ADDRESS_TAG_MASK __BITS(63,56) /* if TCR.TBI[01]=1 */ 164 * return the space considering TBI. (PAC is not yet) 175 uint64_t addrtop, tbi; local in function:aarch64_addressspace 178 tbi = addrtop ? TCR_TBI1 : TCR_TBI0; 179 if (reg_tcr_el1_read() & tbi) { 208 uint64_t addrtop, tbi; local in function:aarch64_untag_address 211 tbi = addrtop ? TCR_TBI1 : TCR_TBI0; 212 if (reg_tcr_el1_read() & tbi) { [all...] |