Home
last modified time | relevance | path

Searched refs:pe_data (Results 1 – 1 of 1) sorted by relevance

/external/arm-trusted-firmware/bl31/
Dehf.c66 static bool has_valid_pri_activations(pe_exc_data_t *pe_data) in has_valid_pri_activations() argument
68 return pe_data->active_pri_bits != 0U; in has_valid_pri_activations()
80 static int get_pe_highest_active_idx(pe_exc_data_t *pe_data) in get_pe_highest_active_idx() argument
82 if (!has_valid_pri_activations(pe_data)) in get_pe_highest_active_idx()
86 return (int) __builtin_ctz(pe_data->active_pri_bits); in get_pe_highest_active_idx()
103 pe_exc_data_t *pe_data = this_cpu_data(); in ehf_activate_priority() local
122 cur_pri_idx = get_pe_highest_active_idx(pe_data); in ehf_activate_priority()
132 pe_data->active_pri_bits |= PRI_BIT(idx); in ehf_activate_priority()
151 pe_data->init_pri_mask = (uint8_t) old_mask; in ehf_activate_priority()
153 EHF_LOG("activate prio=%d\n", get_pe_highest_active_idx(pe_data)); in ehf_activate_priority()
[all …]