Searched refs:LOWER_ATTRS (Results 1 – 6 of 6) sorted by relevance
204 desc |= ((attr & MT_NS) != 0U) ? LOWER_ATTRS(NS) : 0U; in mmap_desc()205 desc |= ((attr & MT_RW) != 0U) ? LOWER_ATTRS(AP_RW) : LOWER_ATTRS(AP_RO); in mmap_desc()210 desc |= LOWER_ATTRS(ACCESS_FLAG); in mmap_desc()225 desc |= LOWER_ATTRS(ATTR_DEVICE_INDEX | OSH); in mmap_desc()255 desc |= LOWER_ATTRS(ATTR_IWBWA_OWBWA_NTR_INDEX | ISH); in mmap_desc()258 desc |= LOWER_ATTRS(ATTR_NON_CACHEABLE_INDEX | OSH); in mmap_desc()408 ap1_mask = LOWER_ATTRS(AP_ONE_VA_RANGE_RES1); in init_xlation_table()
70 printf(((desc & LOWER_ATTRS(AP_RO)) != 0ULL) ? "-RO" : "-RW"); in xlat_desc_print()89 printf(((desc & LOWER_ATTRS(AP_RO)) != 0ULL) ? "-RO" : "-RW"); in xlat_desc_print()96 printf(((desc & LOWER_ATTRS(AP_ACCESS_UNPRIVILEGED)) != 0ULL) in xlat_desc_print()101 switch (desc & LOWER_ATTRS(EL3_S1_NSE | NS)) { in xlat_desc_print()105 case LOWER_ATTRS(NS): in xlat_desc_print()108 case LOWER_ATTRS(EL3_S1_NSE): in xlat_desc_print()115 printf(((LOWER_ATTRS(NS) & desc) != 0ULL) ? "-NS" : "-S"); in xlat_desc_print()
129 desc |= LOWER_ATTRS(ACCESS_FLAG); in xlat_desc()138 desc |= ((attr & MT_RW) != 0U) ? LOWER_ATTRS(AP_RW) : LOWER_ATTRS(AP_RO); in xlat_desc()148 desc |= LOWER_ATTRS(AP_ACCESS_UNPRIVILEGED); in xlat_desc()151 desc |= LOWER_ATTRS(AP_NO_ACCESS_UNPRIVILEGED); in xlat_desc()156 desc |= LOWER_ATTRS(AP_ONE_VA_RANGE_RES1); in xlat_desc()171 desc |= LOWER_ATTRS(ATTR_DEVICE_INDEX | OSH); in xlat_desc()205 desc |= LOWER_ATTRS(ATTR_IWBWA_OWBWA_NTR_INDEX); in xlat_desc()207 desc |= LOWER_ATTRS(NSH); in xlat_desc()209 desc |= LOWER_ATTRS(OSH); in xlat_desc()211 desc |= LOWER_ATTRS(ISH); in xlat_desc()[all …]
65 return LOWER_ATTRS(EL3_S1_NSE | NS); in xlat_arch_get_pas()68 return LOWER_ATTRS(EL3_S1_NSE); in xlat_arch_get_pas()71 return LOWER_ATTRS(NS); in xlat_arch_get_pas()
53 return LOWER_ATTRS(NS); in xlat_arch_get_pas()
147 #define LOWER_ATTRS(x) (((x) & U(0xfff)) << 2) macro